@charset "UTF-8";
* {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  box-sizing: border-box;
  color: #fff;
  font-size: 14px;
}

html {
  font-size: 14px;
  min-height: 100vh;
}

div, p, ul, ol, li {
  box-sizing: border-box;
}

main {
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  padding: 0 3%;
}

.skew {
  transform: skewY(-10deg);
}

.skew > * {
  transform: skewY(10deg);
}

.din {
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .show_sm {
    display: block;
  }

  .show_pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .show_sm {
    display: none;
  }

  .show_pc {
    display: block;
  }
}
.dblWrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.l-section-container {
  width: 100%;
  height: 50px;
  position: relative;
  top: 0;
  bottom: 0;
  margin: auto;
  overflow: hidden;
}

.c-scrolldown {
  width: 1px;
  height: 50px;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
}
.c-scrolldown .c-line {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 50%);
  background-position: 0 -50px;
  background-size: 100% 200%;
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrolldown {
  0% {
    background-position: 0 -50px;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 50px;
  }
}
.l-section-container-right {
  width: 100%;
  height: 1px;
  position: relative;
  top: 0;
  bottom: 0;
  margin: auto;
  overflow: hidden;
}

.c-scrollright {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
  background-color: #CEB513;
}
.c-scrollright .c-line {
  width: 200%;
  height: 100%;
  display: block;
  background: linear-gradient(to right, white 50%, rgba(255, 255, 255, 0) 50%);
  background-position: -100px 0;
  background-size: 100% 200%;
  animation: scrollright 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrollright {
  0% {
    background-position: -100px 0;
  }
  50% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 0;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  background-color: #292623;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

* {
  margin: 0px;
  padding: 0px;
  font-family: noto-sans-cjk-jp, sans-serif;
  letter-spacing: 1px;
  line-height: 1.8;
  box-sizing: border-box;
  font-size: 14px;
}

.shadow {
  -webkit-box-shadow: 0px 0px 10px 0px #000;
  /* Safari, Chrome逕ｨ */
  -moz-box-shadow: 0px 0px 10px 0px #000;
  /* Firefox逕ｨ */
  box-shadow: 0px 0px 10px 0px #000;
  /* CSS3 */
}

div {
  box-sizing: border-box;
  position: relative;
}

.pcNone {
  display: none;
}

.spNone {
  display: block;
}

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

  .pcNone {
    display: block;
  }
}
/*--------------------------共通パーツここから--------------------------------*/
#threeMinutes {
  background-color: #252723;
  background-color: #252723;
  -webkit-text-size-adjust: 100%;
  /*文字サイズの自動調整をオフ*/
  overflow: hidden;
}

@media screen and (max-width: 479px) {
  br.show_sm {
    display: inline-block;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  br.show_sm {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  br.show_sm {
    display: none;
  }
}
.fadeIn {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease;
}

.fadeIn.show {
  opacity: 1;
  transform: translateY(0px);
}

/*
lozad animations
*/
.lozad, .lozad2 {
  opacity: 0;
}

.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*fade*/
.fadeUp {
  animation-name: fadeUp;
  animation-duration: 1s;
}

@keyframes fadeUp {
  from {
    position: relative;
    top: 60px;
    opacity: 0;
  }
  to {
    position: relative;
    top: 0px;
    opacity: 1;
  }
}
/*fadeUp*/
.fadeUpAbs {
  animation-name: fadeUpAbs;
  animation-duration: 1s;
}

@keyframes fadeUpAbs {
  from {
    position: absolute;
    top: 30px;
    opacity: 0;
  }
  to {
    position: absolute;
    top: 0px;
    opacity: 1;
  }
}
/*fadeUpAbs*/
.fadeUpAbsToCenter {
  animation-name: fadeUpAbsToCenter;
  animation-duration: 1.5s;
}

@keyframes fadeUpAbsToCenter {
  from {
    position: absolute;
    top: 55%;
    opacity: 0;
  }
  to {
    position: absolute;
    top: 50% px;
    opacity: 1;
  }
}
/*fadeUpAbs*/
.fadeDown {
  animation-name: fadeDown;
  animation-duration: 1s;
}

@keyframes fadeDown {
  from {
    position: relative;
    top: -20px;
    opacity: 0;
  }
  to {
    position: relative;
    top: 0px;
    opacity: 1;
  }
}
/*fadeDown*/
.fadeDownAbs {
  animation-name: fadeDownAbs;
  animation-duration: 1s;
}

@keyframes fadeDownAbs {
  from {
    position: absolute;
    top: -30px;
    opacity: 0;
  }
  to {
    position: absolute;
    top: 0px;
    opacity: 1;
  }
}
/*fadeDownAbs*/
.fadeLeftAbs {
  animation-name: fadeLeftAbs;
  animation-duration: 1s;
}

@keyframes fadeLeftAbs {
  from {
    position: absolute;
    right: -30px;
    opacity: 0;
  }
  to {
    position: absolute;
    right: 0px;
    opacity: 1;
  }
}
/*fadeLeftAbs*/
.fadeLeft {
  animation-name: fadeLeft;
  animation-duration: 1s;
}

@keyframes fadeLeft {
  from {
    position: relative;
    right: -30px;
    opacity: 0;
  }
  to {
    position: relative;
    right: 0px;
    opacity: 1;
  }
}
/*fadeLeft*/
.fadeRight {
  animation-name: fadeRight;
  animation-duration: 1s;
}

@keyframes fadeRight {
  from {
    position: relative;
    left: -30px;
    opacity: 0;
  }
  to {
    position: relative;
    left: 0px;
    opacity: 1;
  }
}
/*fadeRight*/
.fadeRightAbs {
  animation-name: fadeRightAbs;
  animation-duration: 1s;
}

@keyframes fadeRightAbs {
  from {
    position: absolute;
    left: -30px;
    opacity: 0;
  }
  to {
    position: absolute;
    left: 0px;
    opacity: 1;
  }
}
/*fadeRightAbs*/
.fadeScale {
  animation-name: fadeScale;
  animation-duration: 1s;
}

@keyframes fadeScale {
  from {
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/*fadeRightAbs*/
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pcMenuArea {
  z-index: 2500;
  position: fixed;
  top: 40%;
  right: 2%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  min-width: 150px;
  min-height: 300px;
}
.pcMenuArea .pcmenu {
  list-style: none;
  display: block;
  padding-top: 20px;
}
.pcMenuArea .pcmenu__item {
  background: url("/-/media/image/whymitsui/dot.png") repeat-y;
}
.pcMenuArea .pcmenu__item:last-child {
  background: none;
}
.pcMenuArea .pcmenu__item a {
  display: inline-block;
  position: relative;
  top: -15px;
  text-decoration: none;
  color: white;
  padding-left: 15px;
  padding-bottom: 15px;
  font-size: 0.9rem;
  opacity: 1;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  text-shadow: 1px 1px 3px #666;
}
.pcMenuArea .pcmenu__item a:before {
  content: " ";
  background-color: #fff;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  position: absolute;
  left: -1px;
  top: 7px;
  box-shadow: 1px 1px 3px #666;
}
.pcMenuArea .pcmenu__item a:hover {
  opacity: 1;
  text-shadow: 1px 1px 5px #5EA8DD;
  font-weight: bold;
}
.pcMenuArea .pcmenu__item a:hover:before {
  color: #5EA8DD;
}
.pcMenuArea .pcmenu__item a.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .pcMenuArea {
    display: none;
  }
}

* {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  box-sizing: border-box;
  color: #fff;
  font-size: 14px;
}

html {
  font-size: 14px;
  min-height: 100vh;
}

div, p, ul, ol, li {
  box-sizing: border-box;
}

main {
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  padding: 0 3%;
}

.skew {
  transform: skewY(-10deg);
}

.skew > * {
  transform: skewY(10deg);
}

.din {
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .show_sm {
    display: block;
  }

  .show_pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .show_sm {
    display: none;
  }

  .show_pc {
    display: block;
  }
}
.dblWrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.l-section-container {
  width: 100%;
  height: 50px;
  position: relative;
  top: 0;
  bottom: 0;
  margin: auto;
  overflow: hidden;
}

.c-scrolldown {
  width: 1px;
  height: 50px;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
}
.c-scrolldown .c-line {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 50%);
  background-position: 0 -50px;
  background-size: 100% 200%;
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrolldown {
  0% {
    background-position: 0 -50px;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 50px;
  }
}
.l-section-container-right {
  width: 100%;
  height: 1px;
  position: relative;
  top: 0;
  bottom: 0;
  margin: auto;
  overflow: hidden;
}

.c-scrollright {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
  background-color: #CEB513;
}
.c-scrollright .c-line {
  width: 200%;
  height: 100%;
  display: block;
  background: linear-gradient(to right, white 50%, rgba(255, 255, 255, 0) 50%);
  background-position: -100px 0;
  background-size: 100% 200%;
  animation: scrollright 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrollright {
  0% {
    background-position: -100px 0;
  }
  50% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 0;
  }
}
.sp_logo {
  z-index: 9000;
  position: fixed;
  position: absolute;
  top: 10px;
  left: 5%;
  width: 80%;
  max-width: 400px;
  display: none;
}
.sp_logo img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sp_logo {
    max-width: 250px;
    display: block;
  }
}
.sp_logo.UpMove {
  animation: UpAnime 0.5s forwards;
}
.sp_logo.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sp_menu {
  z-index: 6000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  opacity: 0;
  transition: all 0.6s;
  background: url("/-/media/image/whymitsui/spmenu_bg.jpg") top center no-repeat;
  background-size: cover;
  visibility: hidden;
  overflow-y: none;
  /*padding-top:90px;*/
  text-align: center;
  padding: 0;
}
.sp_menu.active {
  opacity: 1;
  visibility: visible;
}
.sp_menu .spmenu {
  margin-top: 16vh;
  list-style: none;
  width: 100%;
  text-align: left;
}
.sp_menu .spmenu__item {
  width: 100%;
  border-bottom: #444 solid 1px;
}
.sp_menu .spmenu__item:first-child {
  border-top: #444 solid 1px;
}
.sp_menu .spmenu__item a {
  transition: all 0.6s;
  display: block;
  padding: 25px 5%;
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  position: relative;
}
.sp_menu .spmenu__item a:hover {
  background-color: #5EA8DD;
  opacity: 0.9;
}
.sp_menu .spmenu__item a:after {
  display: block;
  content: url("/-/media/image/whymitsui/caret.svg");
  width: 20px;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.sp_header_button {
  position: fixed;
  right: 3%;
  top: 0px;
  z-index: 8000;
  width: 60px;
  height: 60px;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
  box-sizing: border-box;
  display: none;
}
.sp_header_button.active {
  position: fixed;
}
@media screen and (max-width: 768px) {
  .sp_header_button {
    display: block;
  }
}

/*humberger menu Button*/
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 28px;
  height: 22px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 10px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/*action*/
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
  background-color: #fff;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
  background-color: #fff;
}

@media screen and (max-width: 479px) {
  .sp_header_button {
    display: block;
  }
}
@media screen and (min-width: 480px) and (max-width: 768px) {
  .sp_header_button {
    display: block;
  }
}
#threeMinutes {
  /*--------------------------KV ここから--------------------------------*/
  /*# sourceMappingURL=main.css.map */
}
#threeMinutes .kvArea {
  width: 100%;
  height: 100vh;
  position: relative;
}
#threeMinutes .kv {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: #000;
}
#threeMinutes .kv__titleArea {
  position: relative;
  padding-top: 34vh;
  padding-left: 12vw;
  z-index: 1000;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #threeMinutes .kv__titleArea {
    text-align: center;
    padding-left: 0vw;
    padding-top: 24vh;
  }
}
#threeMinutes .logo {
  width: 125px;
  position: relative;
  top: 10px;
  left: 0;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #threeMinutes .logo {
    margin-right: 0px;
    width: 30%;
    max-width: 160px;
  }
}
#threeMinutes .kv__title {
  width: 45%;
  max-width: 500px;
  display: inline-block;
}
#threeMinutes .kv__title img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #threeMinutes .kv__title {
    display: block;
    width: 70%;
    max-width: 400px;
    margin: 30px auto;
    text-align: center;
  }
}
#threeMinutes .kv__lead {
  padding-top: 0px;
  font-size: 1rem;
  color: #fff;
  text-shadow: 1px 1px 3px #555;
}
#threeMinutes .scrollArea {
  width: 100%;
  height: 100px;
  position: absolute;
  text-align: center;
  top: 85%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#threeMinutes .scrollArea .scrollAreaText {
  opacity: 0.8;
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-shadow: 1px 1px 3px #555;
}
#threeMinutes .kv video {
  /* position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   margin: auto;*/
  /*min-width: 100%;
  min-height: 100%;*/
  height: 100%;
  width: 177.77777778vh;
  /* 100 * 16 / 9 */
  min-width: 100%;
  min-height: 56.25vw;
  /* 100 * 9 / 16 */
  position: absolute;
  left: 50%;
  /* % of surrounding element */
  top: 50%;
  transform: translate(-50%, -50%);
  /* % of current element */
}
#threeMinutes #kv__black {
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

#threeMinutes {
  /*--------------------------LEAD ここから--------------------------------*/
}
#threeMinutes #logisticsArea {
  width: 100%;
  background-color: #5EA8DD;
  position: relative;
  height: auto;
  min-height: 870vh;
}
#threeMinutes #logisticsArea #logisticsTitle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2300;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logisticsArea #logisticsTitle {
    display: none;
  }
}
#threeMinutes #logisticsArea #logisticsTitle_sp {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 2300;
  display: none;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logisticsArea #logisticsTitle_sp {
    display: block;
  }
}
#threeMinutes #logisticsArea #logisticsTitleJp {
  position: absolute;
  top: 30px;
  right: 5%;
  width: 100%;
  text-align: right;
  left: unset;
  font-size: 2.8rem;
  letter-spacing: 10px;
  font-weight: bold;
  z-index: 2300;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logisticsArea #logisticsTitleJp {
    display: none;
  }
}
#threeMinutes #logisticsArea #logisticsTitleJp_sp {
  position: absolute;
  left: 6%;
  top: 65px;
  width: 28px;
  z-index: 2300;
  display: none;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logisticsArea #logisticsTitleJp_sp {
    display: block;
  }
}
#threeMinutes #logisticsNavi {
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  height: 100vh;
  z-index: 2100;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logisticsNavi {
    left: unset;
    right: 30px;
    width: 260px;
  }
}
#threeMinutes #logistcisNaviImage {
  position: relative;
  width: 90%;
  min-width: 300px;
  margin: 4vh auto;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  opacity: 0;
  top: 5%;
}
@media (max-height: 670px) {
  #threeMinutes #logistcisNaviImage {
    top: 0px;
  }
}
#threeMinutes #logistcisNaviImage .logistics_navi_bg_dammy {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logistcisNaviImage {
    margin: 6vh auto;
    width: 90%;
    min-width: unset;
  }
}
#threeMinutes #logistcisNaviImage.logistics01 {
  opacity: 1;
  background: url(/-/media/image/whymitsui/logistics/valuechain01.png) top center no-repeat;
  background-size: contain;
}
#threeMinutes #logistcisNaviImage.logistics02 {
  opacity: 1;
  background: url(/-/media/image/whymitsui/logistics/valuechain02.png) top center no-repeat;
  background-size: contain;
}
#threeMinutes #logistcisNaviImage.logistics03 {
  opacity: 1;
  background: url(/-/media/image/whymitsui/logistics/valuechain03.png) top center no-repeat;
  background-size: contain;
}
#threeMinutes #logistcisNaviImage.logistics04 {
  opacity: 1;
  background: url(/-/media/image/whymitsui/logistics/valuechain04.png) top center no-repeat;
  background-size: contain;
}
#threeMinutes #logistcisNaviImage.logistics05 {
  opacity: 1;
  background: url(/-/media/image/whymitsui/logistics/valuechain05.png) top center no-repeat;
  background-size: contain;
}
#threeMinutes #logistcisNaviImage.logistics06 {
  opacity: 1;
  background: url(/-/media/image/whymitsui/logistics/valuechain06.png) top center no-repeat;
  background-size: contain;
}
#threeMinutes #logistcisNaviImage.logistics07 {
  opacity: 1;
  background: url(/-/media/image/whymitsui/logistics/valuechain07.png) top center no-repeat;
  background-size: contain;
}
#threeMinutes #logistcisNaviImage .logiLink {
  position: absolute;
  background-color: #fff;
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  opacity: 0.05;
}
#threeMinutes #logistcisNaviImage .logiLink:hover {
  background-color: #000;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logistcisNaviImage .logiLink {
    width: 52px;
    height: 52px;
  }
}
#threeMinutes #logistcisNaviImage .logistics01Link {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 127px;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logistcisNaviImage .logistics01Link {
    top: 92px;
  }
}
#threeMinutes #logistcisNaviImage .logistics02Link {
  position: absolute;
  left: 38px;
  top: 215px;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logistcisNaviImage .logistics02Link {
    left: 27px;
    top: 156px;
  }
}
#threeMinutes #logistcisNaviImage .logistics03Link {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 214px;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logistcisNaviImage .logistics03Link {
    top: 156px;
  }
}
#threeMinutes #logistcisNaviImage .logistics04Link {
  position: absolute;
  right: 38px;
  top: 215px;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logistcisNaviImage .logistics04Link {
    right: 27px;
    top: 156px;
  }
}
#threeMinutes #logistcisNaviImage .logistics05Link {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 305px;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logistcisNaviImage .logistics05Link {
    top: 221px;
  }
}
#threeMinutes #logistcisNaviImage .logistics06Link {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 395px;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logistcisNaviImage .logistics06Link {
    top: 286px;
  }
}
#threeMinutes #logistcisNaviImage .logistics07Link {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 483px;
}
@media screen and (max-width: 768px) {
  #threeMinutes #logistcisNaviImage .logistics07Link {
    top: 351px;
  }
}
#threeMinutes .bgImageArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2000;
}
#threeMinutes .bgImageArea .photo {
  width: 100%;
  height: 100vh;
  opacity: 0;
  object-fit: cover;
  /* この一行を追加するだけ！ */
}
#threeMinutes .bgImageArea .photo .innerPhoto {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  /* この一行を追加するだけ！ */
  object-position: center right;
}
@media screen and (max-width: 768px) {
  #threeMinutes .bgImageArea .photo .innerPhoto {
    object-position: center 50%;
  }
}
#threeMinutes .bgImageArea .logistics_navi_area {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 360px;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  #threeMinutes .bgImageArea .logistics_navi_area {
    left: unset;
    right: 0;
    width: 320px;
  }
}
#threeMinutes .textArea {
  z-index: 2100;
  display: block;
  width: 45%;
  position: absolute;
  bottom: 15%;
  right: 10%;
}
#threeMinutes .textArea .inner {
  width: 100%;
  padding: 5% 5%;
  background-color: rgba(94, 168, 221, 0.9);
}
@media screen and (max-width: 768px) {
  #threeMinutes .textArea .inner {
    padding: 0 5%;
    background-color: unset;
  }
}
#threeMinutes .textArea .logistics01__title {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: 3px;
}
#threeMinutes .textArea .logistics01__des {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 5px;
}
#threeMinutes .textArea .logistics01__caption {
  opacity: 0.8;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #threeMinutes .textArea {
    width: 320px;
    position: absolute;
    bottom: 2vh;
    right: 0;
    top: 74%;
    background-color: unset;
  }
  #threeMinutes .textArea .logistics01__title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  #threeMinutes .textArea .logistics01__des {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  #threeMinutes .textArea .logistics01__caption {
    font-size: 0.7rem;
    line-height: 1.6;
  }
}
@media (max-height: 670px) {
  #threeMinutes .textArea {
    top: 76%;
  }
}
#threeMinutes #logistics01 {
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: relative;
  overflow: hidden;
}
#threeMinutes #logistics02 {
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: relative;
  overflow: hidden;
}
#threeMinutes #logistics03 {
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: relative;
  overflow: hidden;
}
#threeMinutes #logistics04 {
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: relative;
  overflow: hidden;
}
#threeMinutes #logistics05 {
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: relative;
  overflow: hidden;
}
#threeMinutes #logistics06 {
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: relative;
  overflow: hidden;
}
#threeMinutes #logistics07 {
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: relative;
  overflow: hidden;
}
#threeMinutes #logistics08 {
  z-index: 2200;
  width: 100%;
  background-color: #5EA8DD;
  position: relative;
  padding-top: 35%;
  height: auto;
  padding-bottom: 100px;
}
#threeMinutes #logistics08 .business_area {
  background-color: #8EB6D5;
  width: 80%;
  max-width: 1200px;
  min-height: 300px;
  position: relative;
  padding-left: 5%;
}
@media screen and (max-width: 767px) {
  #threeMinutes #logistics08 .business_area {
    width: 92%;
    padding-left: 0;
    margin-left: 8%;
    text-align: center;
  }
}
#threeMinutes #logistics08 .business_area .business_area__title {
  width: 180px;
  position: relative;
  top: 120px;
}
@media screen and (max-width: 767px) {
  #threeMinutes #logistics08 .business_area .business_area__title {
    display: inline-block;
    top: 50px;
  }
}
#threeMinutes #logistics08 .business_area .business_area_icons {
  z-index: 2100;
  width: 70%;
  min-height: 400px;
  position: absolute;
  top: -140px;
  right: -30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #threeMinutes #logistics08 .business_area .business_area_icons {
    position: relative;
    width: 80%;
    top: 0;
    right: 0;
    margin: 100px auto 40px auto;
  }
}
#threeMinutes #logistics08 .business_area .business_area_icons:after {
  content: "";
  display: block;
  width: 50%;
}
#threeMinutes #logistics08 .business_area .business_area_icons .iconset {
  width: 21%;
  cursor: pointer;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #threeMinutes #logistics08 .business_area .business_area_icons .iconset {
    width: 47%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #threeMinutes #logistics08 .business_area .business_area_icons .iconset {
    width: 29%;
  }
}
#threeMinutes #logistics08 .business_area .business_area_icons .iconset .icon {
  width: 70%;
  margin-bottom: 5px;
}
#threeMinutes #logistics08 .business_area .business_area_icons .iconset .iconName {
  background-color: #27648B;
  text-align: center;
  padding: 8px 12px;
  height: 40px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0;
  font-size: 0.9rem;
  border-radius: 40px;
}
#threeMinutes #logistics08 .business_area .business_area_icons .iconset .iconDes {
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  width: 150%;
  padding: 20px 5%;
  background-color: #fff;
  color: #27648B;
  line-height: 1.4;
  position: absolute;
  bottom: 115%;
  left: -25%;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}
#threeMinutes #logistics08 .business_area .business_area_icons .iconset .iconDes:after {
  content: url("/-/media/image/whymitsui/logistics/triangle.svg");
  width: 26px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -18px;
}
#threeMinutes #logistics08 .business_area .business_area_icons .iconset:hover {
  opacity: 1;
}
#threeMinutes #logistics08 .business_area .business_area_icons .iconset:hover .icon {
  opacity: 0.8;
}
#threeMinutes #logistics08 .business_area .business_area_icons .iconset:hover .iconName {
  opacity: 0.8;
}
#threeMinutes #logistics08 .business_area .business_area_icons .iconset:hover .iconDes {
  visibility: visible;
  display: inline-block;
  opacity: 1;
  transform: translate(0%, 30%);
}
#threeMinutes #logistics08 .otherServiceArea {
  background-color: #4887B8;
  width: 90%;
  min-height: 300px;
  position: relative;
  padding-left: 5%;
  margin-left: 10%;
  margin-top: 300px;
}
@media screen and (max-width: 767px) {
  #threeMinutes #logistics08 .otherServiceArea {
    width: 92%;
    padding-left: 0;
    margin-left: 8%;
    text-align: center;
    margin-top: 20px;
  }
}
#threeMinutes #logistics08 .otherServiceArea .business_area__title {
  width: 180px;
  position: absolute;
  top: 120px;
  right: 4%;
}
@media screen and (max-width: 767px) {
  #threeMinutes #logistics08 .otherServiceArea .business_area__title {
    position: relative;
    display: inline-block;
    top: 50px;
    right: unset;
  }
}
#threeMinutes #logistics08 .otherServiceArea_icons {
  z-index: 2100;
  width: 70%;
  padding: 100px 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #threeMinutes #logistics08 .otherServiceArea_icons {
    position: relative;
    top: 0;
    right: 0;
    margin: 0px auto 20px auto;
    width: 88%;
  }
}
#threeMinutes #logistics08 .otherServiceArea_icons:after {
  content: "";
  display: block;
  width: 30%;
}
#threeMinutes #logistics08 .otherServiceArea_icons .iconset {
  width: 21%;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #threeMinutes #logistics08 .otherServiceArea_icons .iconset {
    width: 48.6%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #threeMinutes #logistics08 .otherServiceArea_icons .iconset {
    width: 31%;
  }
}
#threeMinutes #logistics08 .otherServiceArea_icons .iconset .iconName {
  background-color: #719EC2;
  text-align: center;
  padding: 8px 15px;
  height: 40px;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 40px;
  white-space: nowrap;
}

#threeMinutes {
  /*--------------------------LEAD ここから--------------------------------*/
}
#threeMinutes #realEstateArea {
  width: 100%;
  height: 300vh;
  background-color: red;
  background-color: #ccc;
  position: relative;
}
@media screen and (max-width: 768px) {
  #threeMinutes #realEstateArea {
    height: auto;
  }
}
#threeMinutes #realEstateArea #realEstateTitle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2100;
}
@media screen and (max-width: 768px) {
  #threeMinutes #realEstateArea #realEstateTitle {
    display: none;
  }
}
#threeMinutes #realEstateArea #realestateTitle_sp {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 2100;
  display: none;
}
@media screen and (max-width: 768px) {
  #threeMinutes #realEstateArea #realestateTitle_sp {
    display: block;
  }
}
#threeMinutes #realEstateArea #realEstateTitleJp {
  position: absolute;
  top: 30px;
  right: 5%;
  width: 100%;
  text-align: right;
  left: unset;
  font-size: 2.8rem;
  letter-spacing: 10px;
  font-weight: bold;
  z-index: 2300;
}
@media screen and (max-width: 768px) {
  #threeMinutes #realEstateArea #realEstateTitleJp {
    display: none;
  }
}
#threeMinutes #realEstateArea #realestateTitleJp_sp {
  position: absolute;
  left: 6%;
  top: 65px;
  width: 28px;
  z-index: 2100;
  display: none;
}
@media screen and (max-width: 768px) {
  #threeMinutes #realEstateArea #realestateTitleJp_sp {
    display: block;
  }
}
#threeMinutes .bgImageArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2000;
}
#threeMinutes .bgImageArea .photo {
  width: 100%;
  height: 100vh;
  transform: scale(1.2);
  opacity: 0;
  object-fit: cover;
  /* この一行を追加するだけ！ */
}
#threeMinutes .realEstateTextArea .inner {
  text-decoration: none;
  width: 100%;
}
#threeMinutes .realEstateTextArea .inner .realestate__title {
  font-size: 2.2rem;
  letter-spacing: 10px;
  font-weight: bold;
  width: 100%;
  text-shadow: 1px 1px 3px #555;
  white-space: nowrap;
}
#threeMinutes .realEstateTextArea .inner .realestate__des {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px #555;
}
@media screen and (max-width: 768px) {
  #threeMinutes .realEstateTextArea .inner .realestate__title {
    font-size: 1.8rem;
  }
  #threeMinutes .realEstateTextArea .inner .realestate__des {
    font-size: 1rem;
  }
}
#threeMinutes #realestate01textArea {
  position: absolute;
  left: 8%;
  top: 52vh;
  z-index: 2100;
  opacity: 0.4;
  transition: opacity cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
#threeMinutes #realestate01textArea.active {
  opacity: 1;
}
#threeMinutes #realestate01textArea:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #threeMinutes #realestate01textArea {
    left: 18%;
    top: 60vh;
  }
}
#threeMinutes #realestate02textArea {
  position: absolute;
  left: 8%;
  top: 72vh;
  z-index: 2100;
  opacity: 0.4;
  transition: opacity cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
#threeMinutes #realestate02textArea.active {
  opacity: 1;
}
#threeMinutes #realestate02textArea:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #threeMinutes #realestate02textArea {
    left: 18%;
    top: 76vh;
  }
}
#threeMinutes #realestate01 {
  width: 100%;
  height: 100vh;
  background-color: #ccc;
  position: relative;
  overflow: hidden;
}
#threeMinutes #realestate02 {
  width: 100%;
  height: 100vh;
  background-color: #cccddd;
  position: relative;
  overflow: hidden;
}
#threeMinutes {
  /*--------------------------IN NUMBER ここから--------------------------------*/
}
#threeMinutes .original-gradient {
  background-image: linear-gradient(122deg, #01a2e1, #00c7cd);
}
#threeMinutes #inNumberArea {
  width: 100%;
  min-height: 100vh;
  text-align: center;
}
#threeMinutes #inNumberArea .inNumberHeader {
  width: 100%;
  overflow: hidden;
}
#threeMinutes #inNumberArea .inNumberHeader .numberHeader {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #threeMinutes #inNumberArea .inNumberHeader .numberHeader {
    display: none;
  }
}
#threeMinutes #inNumberArea .inNumberHeader .numberHeader_sp {
  display: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #threeMinutes #inNumberArea .inNumberHeader .numberHeader_sp {
    display: block;
  }
}
#threeMinutes #inNumberArea .innumbers {
  width: 80%;
  position: relative;
  top: -40px;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  #threeMinutes #inNumberArea .innumbers {
    display: none;
  }
}
#threeMinutes #inNumberArea .innumbers_sp {
  width: 80%;
  position: relative;
  top: -40px;
  max-width: 1200px;
  display: none;
}
@media screen and (max-width: 768px) {
  #threeMinutes #inNumberArea .innumbers_sp {
    display: inline-block;
  }
}
#threeMinutes #inNumberArea .innumberMainTitle {
  font-size: 2.2rem;
  letter-spacing: 15px;
  line-height: 1.5;
  font-weight: bold;
  padding: 3rem 0;
}
@media screen and (max-width: 480px) {
  #threeMinutes #inNumberArea .innumberMainTitle {
    font-size: 1.7rem;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea {
  width: 81%;
  max-width: 1200px;
  margin: 50px auto 0px auto;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 600px;
  position: relative;
}
@media screen and (max-width: 640px) {
  #threeMinutes #inNumberArea .numbersBoxArea {
    width: 92%;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea:after {
  content: "";
  display: block;
  width: 29vw;
}
#threeMinutes #inNumberArea .numbersBoxArea .numbersBox {
  width: 26vw;
  height: 26vw;
  background-color: #fff;
  position: relative;
  display: block;
  margin-bottom: 1vw;
  text-align: center;
  color: #0BA1E0;
}
@media screen and (max-width: 640px) {
  #threeMinutes #inNumberArea .numbersBoxArea .numbersBox {
    width: 44vw;
    min-height: 44vw;
    margin-bottom: 3vw;
  }
}
@media screen and (min-width: 641px) and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea .numbersBox {
    width: 39vw;
    min-height: 39vw;
    margin-bottom: 2vw;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea .numbersBox .numberBoxTitle {
  border-radius: 40px;
  min-width: 15vw;
  display: inline-block;
  padding: 0.9vw 2vw;
  line-height: 1.2;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 2px;
  background-color: blue;
  color: white;
}
#threeMinutes #inNumberArea .numbersBoxArea .numbersBox .numberBoxTitle .small {
  font-size: 0.8vw;
  letter-spacing: 0px;
}
@media screen and (max-width: 640px) {
  #threeMinutes #inNumberArea .numbersBoxArea .numbersBox .numberBoxTitle {
    font-size: 0.8rem;
    letter-spacing: 0px;
    padding: 1.5vw 4.2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea .numbersBox .numberBoxTitle.longtitle {
    line-height: 1.1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea .numbersBox .numberBoxTitle.longtitle .small {
    display: block;
    height: 12px;
  }
}
@media screen and (min-width: 641px) and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea .numbersBox .numberBoxTitle {
    padding: 1.5vw 4.2vw;
    font-size: 1rem;
    letter-spacing: 0px;
  }
  #threeMinutes #inNumberArea .numbersBoxArea .numbersBox .numberBoxTitle.longtitle {
    line-height: 1.1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea .numbersBox .numberBoxTitle.longtitle .small {
    display: block;
    height: 12px;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 {
  padding-top: 2vw;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 .boxNumber01 {
  font-size: 3vw;
  color: inherit;
  font-weight: bold;
  margin-bottom: 4vw;
  color: #0BA1E0;
  height: 6.5vw;
  margin-top: 10px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 .boxNumber01 .din {
  line-height: 1.3;
  font-size: 10vw;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 .boxNumber02 {
  font-size: 1.4vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 .boxNumber02 .din {
  line-height: 1.3;
  font-size: 6vw;
  color: #0BA1E0;
  padding: 0 1vw;
}
@media screen and (max-width: 480px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 {
    padding-top: 3vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 .boxNumber01 {
    font-size: 3vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 .boxNumber01 .din {
    font-size: 14vw;
    line-height: 1.3;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 .boxNumber02 {
    font-size: 2.5vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 .boxNumber02 .din {
    font-size: 12vw;
    line-height: 1.9;
  }
}
@media screen and (min-width: 481px) and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 {
    padding-top: 3vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 .boxNumber01 {
    font-size: 3vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 .boxNumber01 .din {
    font-size: 14vw;
    line-height: 1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 .boxNumber02 {
    font-size: 2.5vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox01 .boxNumber02 .din {
    font-size: 12vw;
    line-height: 1.7;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox02 {
  background: url("/-/media/image/whymitsui/numbers/number_bg02.svg") top center no-repeat;
  background-size: cover;
  padding-top: 2vw;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox02 .boxNumber01 {
  font-size: 3vw;
  color: inherit;
  font-weight: bold;
  margin-bottom: 5vw;
  color: #0BA1E0;
  height: 7vw;
  margin-top: 10px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox02 .boxNumber01 .din {
  line-height: 1.3;
  font-size: 14vw;
  color: #0BA1E0;
}
@media screen and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox02 {
    padding-top: 3vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox02 .boxNumber01 {
    font-size: 3vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox02 .boxNumber01 .din {
    font-size: 19vw;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox03 {
  background: url("/-/media/image/whymitsui/numbers/number_bg03.svg") top center no-repeat;
  background-size: cover;
  padding-top: 2vw;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox03 .boxNumber01 {
  font-size: 3vw;
  color: inherit;
  font-weight: bold;
  margin-bottom: 5vw;
  color: #0BA1E0;
  height: 7vw;
  margin-top: 30px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox03 .boxNumber01 .din {
  line-height: 1.3;
  font-size: 10vw;
  color: #0BA1E0;
}
@media screen and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox03 {
    padding-top: 6vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox03 .boxNumber01 .din {
    font-size: 14vw;
    line-height: 1;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 {
  padding-top: 2vw;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 .boxNumber01 {
  font-size: 1.6vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 .boxNumber01 .din {
  line-height: 1.2;
  font-size: 6.5vw;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 .boxNumber02 {
  font-size: 1.6vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 .boxNumber02 .din {
  line-height: 1.2;
  font-size: 6.5vw;
  color: #0BA1E0;
}
@media screen and (max-width: 480px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 {
    padding-top: 3vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 .boxNumber01 {
    font-size: 2.5vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 .boxNumber01 .din {
    font-size: 10vw;
    line-height: 1.3;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 .boxNumber02 {
    font-size: 2.5vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 .boxNumber02 .din {
    font-size: 10vw;
    line-height: 1.3;
  }
}
@media screen and (min-width: 481px) and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 {
    padding-top: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 .boxNumber01 {
    font-size: 2.5vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 .boxNumber01 .din {
    font-size: 10vw;
    line-height: 1.1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 .boxNumber02 {
    font-size: 2.5vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox04 .boxNumber02 .din {
    font-size: 10vw;
    line-height: 1.2;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox05 {
  background: url("/-/media/image/whymitsui/numbers/number_bg05.svg") top center no-repeat;
  background-size: cover;
  padding-top: 2vw;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox05 .boxNumber01 {
  font-size: 2vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
  margin-top: 30px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox05 .boxNumber01 .din {
  line-height: 1.3;
  font-size: 12vw;
  color: #0BA1E0;
}
@media screen and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox05 {
    padding-top: 6vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox05 .boxNumber01 {
    font-size: 3vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox05 .boxNumber01 .din {
    font-size: 16vw;
    line-height: 1;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox06 {
  background: url("/-/media/image/whymitsui/numbers/number_bg06.svg") top center no-repeat;
  background-size: 110%;
  padding-top: 2vw;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox06 .boxNumber01 {
  font-size: 2vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
  margin-top: 30px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox06 .boxNumber01 .din {
  line-height: 1.3;
  font-size: 12vw;
  color: #0BA1E0;
}
@media screen and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox06 {
    padding-top: 6vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox06 .boxNumber01 {
    font-size: 3vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox06 .boxNumber01 .din {
    font-size: 16vw;
    line-height: 1;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox07 {
  background-color: #fff;
  background: url("/-/media/image/whymitsui/numbers/number_bg07.svg") top center no-repeat;
  background-size: 110%;
  padding-top: 2vw;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox07 .boxNumber01 {
  font-size: 2vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
  margin-top: 30px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox07 .boxNumber01 .din {
  line-height: 1.3;
  font-size: 12vw;
  color: #0BA1E0;
}
@media screen and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox07 {
    padding-top: 6vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox07 .boxNumber01 {
    font-size: 2.5vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox07 .boxNumber01 .din {
    font-size: 15vw;
    line-height: 1;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 {
  background-color: #fff;
  background: url("/-/media/image/whymitsui/numbers/number_bg08.svg") top center no-repeat;
  background-size: 120%;
  padding: 2vw;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber01 {
  font-size: 2vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
  text-align: right;
  margin-top: 10px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber01 .din {
  line-height: 1;
  font-size: 8vw;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber01 .caption {
  display: block;
  font-size: 0.5rem;
  color: #0BA1E0;
  line-height: 1;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber02 {
  font-size: 1.6vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
  text-align: right;
  margin-top: 0px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber02 .din {
  line-height: 1;
  font-size: 8vw;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber02 .caption {
  display: block;
  font-size: 0.5rem;
  color: #0BA1E0;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 {
    padding-top: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber01 {
    font-size: 2vw;
    margin-top: 0px;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber01 .din {
    font-size: 13vw;
    line-height: 1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber01 .caption {
    transform-origin: right top;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber02 {
    font-size: 3vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber02 .din {
    font-size: 10vw;
    line-height: 1.2;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber02 .caption {
    transform-origin: right top;
  }
}
@media screen and (min-width: 481px) and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 {
    padding-top: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber01 {
    font-size: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber01 .din {
    font-size: 12vw;
    line-height: 1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber01 .caption {
    transform-origin: right top;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber02 {
    font-size: 2.5vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber02 .din {
    font-size: 12vw;
    line-height: 1.2;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox08 .boxNumber02 .caption {
    position: relative;
    top: -8vw;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 {
  background-color: #fff;
  background: url("/-/media/image/whymitsui/numbers/number_bg09.svg") top center no-repeat;
  background-size: 120%;
  padding: 2vw;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber01 {
  font-size: 1.3vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
  text-align: right;
  margin-top: 10px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber01 .din {
  line-height: 1;
  font-size: 7vw;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber01 .caption {
  display: block;
  font-size: 0.5rem;
  color: #0BA1E0;
  line-height: 1;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber02 {
  font-size: 1.6vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
  text-align: right;
  margin-top: 0px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber02 .din {
  line-height: 1;
  font-size: 8vw;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber02 .caption {
  display: block;
  font-size: 0.5rem;
  color: #0BA1E0;
  line-height: 1;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber02 .number09tani {
  width: 60px;
}
@media screen and (max-width: 480px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 {
    padding-top: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber01 {
    margin-top: 0px;
    font-size: 1.6vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber01 .din {
    font-size: 11vw;
    line-height: 1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber01 .caption {
    transform-origin: right top;
    line-height: 1.1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber02 {
    font-size: 2.5vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber02 .din {
    font-size: 10vw;
    line-height: 1.2;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber02 .caption {
    font-size: 0.8vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber02 .number09tani {
    width: 35px;
  }
}
@media screen and (min-width: 481px) and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 {
    padding-top: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber01 {
    font-size: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber01 .din {
    font-size: 13vw;
    line-height: 1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber01 .caption {
    font-size: 1vw;
    transform: scale(0.8);
    transform-origin: right top;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber02 {
    font-size: 2.5vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber02 .din {
    font-size: 11vw;
    line-height: 1.2;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox09 .boxNumber02 .caption {
    font-size: 1vw;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 {
  background-color: #fff;
  background: url("/-/media/image/whymitsui/numbers/number_bg10.svg") top center no-repeat;
  background-size: 120%;
  padding: 2vw;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber01 {
  font-size: 1.3vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
  text-align: right;
  margin-top: 10px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber01 .din {
  line-height: 1;
  font-size: 7vw;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber01 .caption {
  display: block;
  font-size: 0.5rem;
  color: #0BA1E0;
  line-height: 1;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber01 .number10tani {
  width: 60px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber02 {
  font-size: 1.6vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
  text-align: right;
  margin-top: 0px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber02 .din {
  line-height: 1;
  font-size: 8vw;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber02 .caption {
  display: block;
  font-size: 0.5rem;
  color: #0BA1E0;
  line-height: 1;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber02 .number10tani2 {
  width: 60px;
}
@media screen and (max-width: 480px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 {
    padding-top: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber01 {
    margin-top: 10px;
    font-size: 1.6vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber01 .din {
    font-size: 11vw;
    line-height: 1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber01 .caption {
    transform-origin: right top;
    line-height: 1.1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber01 .number10tani {
    width: 35px;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber02 {
    font-size: 2.5vw;
    margin-top: 10px;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber02 .din {
    font-size: 10vw;
    line-height: 1.2;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber02 .caption {
    font-size: 0.8vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber02 .number10tani2 {
    width: 35px;
  }
}
@media screen and (min-width: 481px) and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 {
    padding-top: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber01 {
    font-size: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber01 .din {
    font-size: 13vw;
    line-height: 1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber01 .caption {
    transform-origin: right top;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber02 {
    font-size: 2.5vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber02 .din {
    font-size: 11vw;
    line-height: 1.2;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox10 .boxNumber02 .caption {
    font-size: 1vw;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 {
  background-color: #fff;
  background: url("/-/media/image/whymitsui/numbers/number_bg11.svg") top center no-repeat;
  background-size: cover;
  padding: 2vw;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 .boxNumber00 {
  font-size: 1.2rem;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
  text-align: center;
  margin-top: 10px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 .boxNumber01 {
  font-size: 1.3vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
  text-align: right;
  margin-top: 0px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 .boxNumber01 .din {
  line-height: 1;
  font-size: 8vw;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 .boxNumber01 .caption {
  display: block;
  font-size: 0.5rem;
  color: #0BA1E0;
  line-height: 1.4;
  letter-spacing: 0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 .boxNumber01 .number11tani {
  width: 40px;
}
@media screen and (max-width: 480px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 {
    padding-top: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 .boxNumber01 {
    margin-top: 10px;
    font-size: 1.6vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 .boxNumber01 .din {
    font-size: 11vw;
    line-height: 1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 .boxNumber01 .caption {
    transform-origin: right top;
    line-height: 1.1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 .boxNumber01 .number11tani {
    width: 30px;
  }
}
@media screen and (min-width: 481px) and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 {
    padding-top: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 .boxNumber01 {
    margin-top: 10px;
    font-size: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 .boxNumber01 .din {
    font-size: 13vw;
    line-height: 1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox11 .boxNumber01 .caption {
    font-size: 1vw;
    transform: scale(0.8);
    transform-origin: right top;
  }
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 {
  background-color: #fff;
  background: url("/-/media/image/whymitsui/numbers/number_bg12.svg") top center no-repeat;
  background-size: cover;
  padding: 2vw;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber01 {
  font-size: 1.3vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
  text-align: right;
  margin-top: 10px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber01 .din {
  line-height: 1;
  font-size: 7vw;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber01 .caption {
  display: block;
  font-size: 0.5rem;
  color: #0BA1E0;
  line-height: 1.4;
  letter-spacing: 0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber01 .number12tani {
  width: 40px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber02 {
  font-size: 1.6vw;
  color: inherit;
  font-weight: bold;
  color: #0BA1E0;
  text-align: right;
  margin-top: 10px;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber02 .din {
  line-height: 1;
  font-size: 5vw;
  color: #0BA1E0;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber02 .caption {
  display: block;
  font-size: 1vw;
  color: #0BA1E0;
  line-height: 1;
}
#threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber02 .number12tani2 {
  width: 55px;
}
@media screen and (max-width: 480px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 {
    padding-top: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber01 {
    margin-top: 5px;
    font-size: 0.8rem;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber01 .din {
    font-size: 10vw;
    line-height: 1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber01 .caption {
    transform-origin: right top;
    line-height: 1.2;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber01 .number12tani {
    width: 35px;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber02 {
    font-size: 2.5vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber02 .din {
    font-size: 8vw;
    line-height: 1.2;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber02 .caption {
    font-size: 1vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber02 .number12tani2 {
    width: 45px;
  }
}
@media screen and (min-width: 481px) and (max-width: 880px) {
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 {
    padding-top: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber01 {
    margin-top: 10px;
    font-size: 2vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber01 .din {
    font-size: 11vw;
    line-height: 1;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber01 .caption {
    font-size: 1vw;
    transform: scale(0.8);
    transform-origin: right top;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber02 {
    font-size: 2.5vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber02 .din {
    font-size: 7.5vw;
    line-height: 1.2;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber02 .caption {
    font-size: 1vw;
  }
  #threeMinutes #inNumberArea .numbersBoxArea #numbersBox12 .boxNumber02 .number12tani2 {
    width: 50px;
  }
}
#threeMinutes #inNumberArea .numbersCaptionDate {
  width: 80%;
  margin: 0px auto;
  padding-bottom: 80px;
  text-align: left;
  color: #fff;
  font-size: 1rem;
}
@media screen and (max-width: 640px) {
  #threeMinutes #inNumberArea .numbersCaptionDate {
    width: 92%;
  }
}

#threeMinutes {
  /*--------------------------HISTORY ここから--------------------------------*/
}
#threeMinutes #historyArea {
  min-height: 100vh;
  position: relative;
  background-color: #928057;
  background-color: #CEB513;
}
#threeMinutes .historyAreaTitle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
}
#threeMinutes .historyAreaTitleJp {
  position: absolute;
  top: 7%;
  left: 4vw;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 10px;
  z-index: 2000;
}
@media screen and (max-width: 768px) {
  #threeMinutes .historyAreaTitleJp {
    width: 100%;
    top: 60px;
    text-align: left;
    left: 0;
    font-size: 1.6rem;
    letter-spacing: 6px;
    padding: 10px 3%;
  }
}
#threeMinutes .history_horizon {
  height: 100vh;
  width: 3300px;
  position: relative;
  background-color: #c5d7d9;
  background-color: #CEB513;
  background: linear-gradient(180deg, #CEB513 0%, #CEB513 60%, #B49800 60%, #B49800 100%);
}
@media screen and (max-width: 768px) {
  #threeMinutes .history_horizon {
    width: 100vw;
    height: 400vh;
    height: auto;
    background: none;
    background-color: #CEB513;
  }
}
#threeMinutes .history_horizon_inner {
  width: 100%;
  position: relative;
  height: 100vh;
  height: auto;
}
@media screen and (max-width: 768px) {
  #threeMinutes .history_horizon_inner {
    height: auto;
    margin-bottom: -60px;
  }
}
#threeMinutes .history_scrollArea {
  position: absolute;
  width: 100px;
  bottom: 60px;
  left: 30px;
}
#threeMinutes .history_scrollArea .history_scrollAreaText {
  position: absolute;
  display: inline-block;
  top: -12px;
  left: 120%;
  font-size: 0.9rem;
  letter-spacing: 3px;
}
#threeMinutes .history_scrollArea .history_scrollAreaText:after {
  content: url("/-/media/image/whymitsui/link/right.svg");
  display: block;
  width: 5px;
  position: absolute;
  top: 0px;
  bottom: 0;
  right: -15px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #threeMinutes .history_scrollArea {
    display: none;
  }
}
#threeMinutes .hystorySectionTitle {
  position: absolute;
  top: 17%;
  left: 5%;
  border-left: #fff dotted 2px;
  padding-left: 2%;
  min-height: 120px;
}
#threeMinutes .hystorySectionTitle .title {
  font-size: 1.7rem;
  letter-spacing: 6px;
  font-weight: bold;
  color: #fff;
}
#threeMinutes .hystorySectionTitle .title .year {
  font-size: 1rem;
}
#threeMinutes .hystorySectionTitle .sectionDes {
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 3px;
}
#threeMinutes .hystorySectionTitle .sectionCaption {
  box-shadow: border-box;
  font-size: 0.9rem;
  font-weight: bold;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 6px;
  background-color: #B29C0D;
}
@media screen and (max-width: 768px) {
  #threeMinutes .hystorySectionTitle .sectionCaption {
    background-color: #CEB513;
  }
}
#threeMinutes .hystorySectionTitle .sectionCaption .th {
  font-size: inherit;
  color: #736300;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #threeMinutes .hystorySectionTitle {
    position: relative;
    top: 0;
    left: 0;
    border-left: none;
    background-color: #B49800;
    padding: 55px 3% 30px 3%;
  }
  #threeMinutes .hystorySectionTitle .title {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }
  #threeMinutes .hystorySectionTitle .title .year {
    font-size: 1rem;
  }
  #threeMinutes .hystorySectionTitle .sectionDes {
    font-size: 1rem;
    line-height: 1.5;
    padding: 4px 0;
  }
  #threeMinutes .hystorySectionTitle .sectionCaption {
    width: 98%;
  }
  #threeMinutes .hystorySectionTitle .sectionCaption .th {
    line-height: 1.4;
    display: block;
  }
}
#threeMinutes .hystorySection01 {
  width: 960px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  #threeMinutes .hystorySection01 {
    width: 100%;
    height: auto;
    position: relative;
  }
}
#threeMinutes .history01Image {
  width: 120%;
  position: absolute;
  left: 0;
  bottom: 32%;
}
@media screen and (max-width: 768px) {
  #threeMinutes .history01Image {
    width: 120%;
    position: relative;
    bottom: unset;
    margin-top: 120px;
    top: 40px;
    left: -10%;
    z-index: 2200;
  }
}
#threeMinutes .historyList {
  width: 100%;
  position: absolute;
  left: 1%;
  top: 71%;
  list-style: none;
  display: flex;
  padding-left: 5%;
  border-top: #666 2px dotted;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  #threeMinutes .historyList {
    position: relative;
    top: 0;
    left: 5%;
    box-sizing: border-box;
    border-top: none;
    border-left: #666 2px dotted;
    display: block;
    padding-left: 18px;
    padding-bottom: 30px;
  }
}
#threeMinutes .historyList__item {
  display: block;
  width: 33.333%;
  position: relative;
}
#threeMinutes .historyList__item.flowitem {
  position: absolute;
  top: 90px;
  left: 65%;
}
#threeMinutes .historyList__item.flowitem:before {
  display: none;
}
#threeMinutes .historyList__item.flowitem2 {
  position: absolute;
  top: 90px;
  left: 3%;
  width: 60%;
}
#threeMinutes .historyList__item.flowitem2:before {
  display: none;
}
#threeMinutes .historyList__item:before {
  content: " ";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #000;
  border-radius: 30px;
  position: absolute;
  top: -17px;
  left: 0px;
}
@media screen and (max-width: 768px) {
  #threeMinutes .historyList__item:before {
    top: 12px;
    left: -25px;
  }
}
@media screen and (max-width: 768px) {
  #threeMinutes .historyList__item {
    width: 95%;
    margin: 35px 0;
  }
  #threeMinutes .historyList__item.flowitem, #threeMinutes .historyList__item.flowitem2 {
    position: relative;
    top: 0px;
    left: 0;
    width: 95%;
  }
  #threeMinutes .historyList__item.flowitem:before, #threeMinutes .historyList__item.flowitem2:before {
    display: block;
  }
}
#threeMinutes .historyList .year {
  font-weight: bold;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
#threeMinutes .historyList .year .din {
  font-size: 160%;
  line-height: 1.2;
  margin-right: 3px;
}
#threeMinutes .historyList .des {
  color: #000;
  font-size: 0.9rem;
  line-height: 1.45;
  padding: 0px 8% 0 0;
}
#threeMinutes .hystorySection02 {
  width: 1200px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 960px;
}
@media screen and (max-width: 768px) {
  #threeMinutes .hystorySection02 {
    width: 100%;
    height: auto;
    position: relative;
    left: 0;
    top: -60px;
  }
}
#threeMinutes .history02Image {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 29%;
}
@media screen and (max-width: 768px) {
  #threeMinutes .history02Image {
    width: 130%;
    position: relative;
    bottom: unset;
    top: 40px;
    left: -20%;
    z-index: 2200;
  }
}
#threeMinutes .hystorySection03 {
  width: 960px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 2166px;
}
@media screen and (max-width: 768px) {
  #threeMinutes .hystorySection03 {
    width: 100%;
    height: auto;
    position: relative;
    left: 0;
    margin-top: -170px;
  }
}
#threeMinutes .history03Image {
  width: 120%;
  position: absolute;
  left: -10%;
  bottom: 30%;
}
@media screen and (max-width: 768px) {
  #threeMinutes .history03Image {
    width: 130%;
    position: relative;
    bottom: unset;
    top: 40px;
    left: -20%;
    z-index: 2200;
  }
}
#threeMinutes .hystorySection04 {
  width: 960px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 3125px;
}
@media screen and (max-width: 768px) {
  #threeMinutes .hystorySection04 {
    width: 100%;
    height: auto;
    position: relative;
    left: 0;
    top: -60px;
  }
}
#threeMinutes .history04Image {
  width: 100%;
  position: absolute;
  left: 0%;
  bottom: 30%;
}
@media screen and (max-width: 768px) {
  #threeMinutes .history04Image {
    width: 130%;
    position: relative;
    bottom: unset;
    top: 40px;
    left: -20%;
    z-index: 2200;
  }
}
#threeMinutes .heritage__des1 {
  position: absolute;
  top: 73vh;
  left: 15vw;
  width: 50vw;
  opacity: 0;
  line-height: 1.5;
  color: #f0ebc5;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  #threeMinutes .heritage__des1 {
    position: relative;
    top: 12vh;
    left: 5vw;
    width: 90vw;
  }
}
#threeMinutes .heritage__photos01 {
  position: absolute;
  overflow: hidden;
  display: block;
  height: 50vh;
  top: 18vh;
  left: 5vw;
}
#threeMinutes .heritage__photos01 img {
  height: 100%;
  position: relative;
  transform: scale(1.3);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #threeMinutes .heritage__photos01 {
    position: relative;
    height: unset;
    top: 12vh;
    left: 5vw;
    width: 90%;
    margin-bottom: 30px;
  }
  #threeMinutes .heritage__photos01 img {
    height: unset;
    width: 100%;
  }
}
#threeMinutes .heritage__photos02 {
  position: absolute;
  overflow: hidden;
  display: block;
  height: 50vh;
  top: 18vh;
  left: 90vh;
}
#threeMinutes .heritage__photos02 img {
  height: 100%;
  position: relative;
  transform: scale(1.3);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #threeMinutes .heritage__photos02 {
    position: relative;
    height: unset;
    top: 12vh;
    left: 5vw;
    width: 90%;
    margin: 30px 0;
  }
  #threeMinutes .heritage__photos02 img {
    height: unset;
    width: 100%;
  }
}
#threeMinutes .heritage__des1_2 {
  position: absolute;
  top: 10vh;
  left: 190vh;
  width: 65vw;
  max-width: 900px;
  opacity: 0;
  line-height: 1.5;
  color: #f0ebc5;
}
@media screen and (max-width: 768px) {
  #threeMinutes .heritage__des1_2 {
    position: relative;
    top: 12vh;
    left: 5vw;
    width: 90vw;
    padding-top: 20px;
  }
}
#threeMinutes .heritage__photos03 {
  position: absolute;
  overflow: hidden;
  display: block;
  height: 50vh;
  top: 33vh;
  left: 190vh;
}
#threeMinutes .heritage__photos03 img {
  height: 100%;
  position: relative;
  transform: scale(1.3);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #threeMinutes .heritage__photos03 {
    position: relative;
    height: unset;
    top: 12vh;
    left: 5vw;
    width: 90%;
    margin: 30px 0;
  }
  #threeMinutes .heritage__photos03 img {
    height: unset;
    width: 100%;
  }
}
#threeMinutes .heritage__photos04 {
  position: absolute;
  overflow: hidden;
  display: block;
  height: 50vh;
  top: 33vh;
  left: 270vh;
}
#threeMinutes .heritage__photos04 img {
  height: 100%;
  position: relative;
  transform: scale(1.3);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #threeMinutes .heritage__photos04 {
    position: relative;
    height: unset;
    top: 12vh;
    left: 5vw;
    width: 90%;
    margin: 30px 0;
  }
  #threeMinutes .heritage__photos04 img {
    height: unset;
    width: 100%;
  }
}
#threeMinutes .heritage__des2 {
  position: absolute;
  top: 68vh;
  left: 370vh;
  width: 45vw;
  max-width: 800px;
  opacity: 0;
  line-height: 1.5;
  color: #f0ebc5;
}
@media screen and (max-width: 768px) {
  #threeMinutes .heritage__des2 {
    position: relative;
    top: 12vh;
    left: 5vw;
    width: 90vw;
  }
}
#threeMinutes .heritage__photos05 {
  position: absolute;
  overflow: hidden;
  display: block;
  height: 50vh;
  top: 10vh;
  left: 370vh;
}
#threeMinutes .heritage__photos05 img {
  height: 100%;
  position: relative;
  transform: scale(1.3);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #threeMinutes .heritage__photos05 {
    position: relative;
    height: unset;
    top: 12vh;
    left: 5vw;
    width: 90%;
    margin: 30px 0;
  }
  #threeMinutes .heritage__photos05 img {
    height: unset;
    width: 100%;
  }
}
#threeMinutes .heritage__photos06 {
  position: absolute;
  overflow: hidden;
  display: block;
  height: 50vh;
  top: 10vh;
  left: 460vh;
  position: absolute;
  overflow: hidden;
}
#threeMinutes .heritage__photos06 img {
  height: 100%;
  position: relative;
  transform: scale(1.3);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #threeMinutes .heritage__photos06 {
    position: relative;
    max-width: unset;
    height: auto;
    top: 8vh;
    left: 5vw;
    width: 90%;
    padding: 30px 0;
  }
  #threeMinutes .heritage__photos06 img {
    height: unset;
    width: 100%;
  }
}
#threeMinutes .heritage__des3 {
  position: absolute;
  top: 68vh;
  left: 460vh;
  width: 50vw;
  opacity: 0;
  line-height: 1.5;
  color: #f0ebc5;
  max-width: 650px;
}
@media screen and (max-width: 768px) {
  #threeMinutes .heritage__des3 {
    position: relative;
    top: 12vh;
    left: 5vw;
    width: 90vw;
    padding-bottom: 60px;
  }
}
#threeMinutes .heritage_horizon_inner .photo_wrapper img {
  height: 100%;
  position: relative;
  transform: scale(1.3);
  opacity: 0;
}

#threeMinutes {
  /*--------------------------SUSTAINABILITY ここから--------------------------------*/
}
#threeMinutes .original-gradient {
  background-image: linear-gradient(122deg, #01a2e1, #00c7cd);
}
#threeMinutes #sustainabilityArea {
  width: 100%;
  min-height: 100vh;
  text-align: center;
  background-color: #01A9AE;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #threeMinutes #sustainabilityArea {
    padding-bottom: 0;
  }
}
#threeMinutes #sustainabilityArea .sustainabilityHeader {
  width: 100%;
  overflow: hidden;
  max-height: 400px;
}
#threeMinutes #sustainabilityArea .sustainabilityHeader .sustainabilityHeader {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #threeMinutes #sustainabilityArea .sustainabilityHeader .sustainabilityHeader {
    display: none;
  }
}
#threeMinutes #sustainabilityArea .sustainabilityHeader .sustainabilityHeader_sp {
  display: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #threeMinutes #sustainabilityArea .sustainabilityHeader .sustainabilityHeader_sp {
    display: block;
  }
}
#threeMinutes #sustainabilityArea .sustainability {
  width: 80%;
  position: relative;
  top: -40px;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  #threeMinutes #sustainabilityArea .sustainability {
    display: none;
  }
}
#threeMinutes #sustainabilityArea .sustainability_sp {
  width: 80%;
  position: relative;
  top: -40px;
  max-width: 1200px;
  display: none;
}
@media screen and (max-width: 768px) {
  #threeMinutes #sustainabilityArea .sustainability_sp {
    display: inline-block;
  }
}
#threeMinutes #sustainabilityArea .sustainabilityMainTitle {
  font-size: 2.2rem;
  letter-spacing: 10px;
  line-height: 1.5;
  font-weight: bold;
  padding: 3rem 0;
}
@media screen and (max-width: 768px) {
  #threeMinutes #sustainabilityArea .sustainabilityMainTitle {
    font-size: 1.9rem;
    letter-spacing: 6px;
  }
}
#threeMinutes #sustainabilityArea .sustainabilityBoxArea {
  width: 80%;
  margin: 50px auto 0 auto;
  min-height: 100px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 920px) {
  #threeMinutes #sustainabilityArea .sustainabilityBoxArea {
    width: 100%;
  }
}
#threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox {
  width: 50%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox {
    width: 100%;
  }
}
#threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox .sustainabilityBoxImage {
  width: 100%;
  display: block;
}
#threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox .sustainabilityBoxTitle {
  display: block;
  width: 90%;
  position: absolute;
  text-shadow: 1px 1px 3px #888;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: auto;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  #threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox .sustainabilityBoxTitle {
    font-size: 1.4rem;
  }
}
#threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox .sustainabilityBoxTitle .small {
  font-size: 60%;
  display: block;
}
#threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox .boxDesArea {
  cursor: pointer;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  width: 100%;
  height: 100%;
  padding: 0 8%;
  text-align: left;
  background-color: #16AED4;
  position: absolute;
  left: 100%;
  top: 0;
  opacity: 0;
  display: block;
}
#threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox .boxDesArea .boxDesInner {
  padding-right: 4%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox .boxDesArea .boxDesTitle {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  #threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox .boxDesArea .boxDesTitle {
    font-size: 1.4rem;
  }
}
#threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox .boxDesArea .boxDesTitle .small {
  font-size: 60%;
  display: block;
}
#threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox .boxDesArea .boxDes {
  line-height: 1.5;
}
#threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox .boxDesArea .boxDes .small {
  font-size: 85%;
  display: block;
}
#threeMinutes #sustainabilityArea .sustainabilityBoxArea .sustainabilityBox:hover .boxDesArea {
  left: 0;
  top: 0;
  opacity: 1;
}

#threeMinutes {
  /*--------------------------MESSAGE ここから--------------------------------*/
}
#threeMinutes #messageArea {
  width: 100%;
  position: relative;
  min-height: 200px;
  background-color: #5EA8DD;
  text-align: left;
  padding: 13rem 0;
}
@media screen and (max-width: 768px) {
  #threeMinutes #messageArea {
    text-align: center;
    padding: 8rem 0;
  }
}
#threeMinutes #messageArea .container {
  width: 100%;
  max-width: 1024px;
  margin: 0px auto;
  padding: 0 7%;
}
#threeMinutes #messageArea .container .messagetitle {
  position: relative;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  font-size: 2.4rem;
  letter-spacing: 6px;
  margin-bottom: 4rem;
  left: 10px;
}
#threeMinutes #messageArea .container .messageDes {
  font-weight: bold;
  color: #fff;
  line-height: 2;
  font-size: 1.4rem;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  #threeMinutes #messageArea .container .messageDes {
    font-size: 1.2rem;
    line-height: 1.7;
  }
}

#threeMinutes {
  /*--------------------------LINK ここから--------------------------------*/
}
#threeMinutes #linkArea {
  width: 100%;
  position: relative;
  min-height: 200px;
  background-color: #3E3A36;
  text-align: left;
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  #threeMinutes #linkArea {
    text-align: center;
  }
}
#threeMinutes #linkArea .container {
  width: 100%;
  max-width: 1024px;
  margin: 0px auto;
  padding: 0 8%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #threeMinutes #linkArea .container {
    padding: 0 3%;
  }
}
#threeMinutes #linkArea .container .link {
  width: 120px;
}
#threeMinutes #linkArea .container .bannerArea {
  padding: 6rem 0 3rem 0;
}
#threeMinutes #linkArea .container .bannerArea .banner {
  display: block;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  background-color: #000;
  position: relative;
  margin-bottom: 20px;
}
#threeMinutes #linkArea .container .bannerArea .banner .bannerImage {
  width: 100%;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transform: scale(1);
  display: block;
}
@media screen and (max-width: 640px) {
  #threeMinutes #linkArea .container .bannerArea .banner .bannerImage {
    display: none;
  }
}
#threeMinutes #linkArea .container .bannerArea .banner .bannerImage_sp {
  width: 100%;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transform: scale(1);
  display: none;
}
@media screen and (max-width: 640px) {
  #threeMinutes #linkArea .container .bannerArea .banner .bannerImage_sp {
    display: block;
  }
}
#threeMinutes #linkArea .container .bannerArea .banner:hover .bannerImage, #threeMinutes #linkArea .container .bannerArea .banner:hover .bannerImage_sp {
  opacity: 0.5;
  transform: scale(1.2);
}
#threeMinutes #linkArea .container .bannerArea .banner .bannerContent {
  position: absolute;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  padding: 0 5% 0 0;
}
#threeMinutes #linkArea .container .bannerArea .banner .left {
  width: 40%;
}
@media screen and (max-width: 640px) {
  #threeMinutes #linkArea .container .bannerArea .banner .left {
    width: 100%;
  }
}
#threeMinutes #linkArea .container .bannerArea .banner .right {
  width: 60%;
  text-align: left;
}
@media screen and (max-width: 640px) {
  #threeMinutes #linkArea .container .bannerArea .banner .right {
    width: 100%;
    text-align: center;
  }
}
#threeMinutes #linkArea .container .bannerArea .banner .logo {
  height: 70%;
  padding-top: 10%;
}
#threeMinutes #linkArea .container .bannerArea .banner .youtube.logo {
  width: 40%;
  padding-top: 10%;
}
@media screen and (max-width: 640px) {
  #threeMinutes #linkArea .container .bannerArea .banner .youtube.logo {
    height: auto;
    width: 38%;
  }
}
#threeMinutes #linkArea .container .bannerArea .banner .sustainalink {
  width: 70%;
  padding-top: 15%;
}
#threeMinutes #linkArea .container .bannerArea .banner .bannerTitle {
  color: #fff;
  margin-top: 12%;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (max-width: 640px) {
  #threeMinutes #linkArea .container .bannerArea .banner .bannerTitle {
    margin-top: 0%;
  }
}
#threeMinutes #linkArea .container .bannerArea .banner .bannerDes {
  color: #fff;
  font-size: bold;
  text-shadow: 1px 1px 3px #555;
}
#threeMinutes #linkArea .container .bannerArea .banner .bannerDes.youtube {
  margin-top: 15%;
}
@media screen and (max-width: 640px) {
  #threeMinutes #linkArea .container .bannerArea .banner .bannerDes.youtube {
    margin-top: 0%;
  }
}
@media screen and (max-width: 640px) {
  #threeMinutes #linkArea .container .bannerArea .banner .bannerDes {
    padding: 0 5%;
  }
}
#threeMinutes #linkArea .container .textLinkArea {
  list-style: none;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#threeMinutes #linkArea .container .textLinkArea__item {
  width: 32%;
  margin-bottom: 1vw;
}
@media screen and (max-width: 680px) {
  #threeMinutes #linkArea .container .textLinkArea__item {
    width: 49%;
  }
}
#threeMinutes #linkArea .container .textLinkArea__link {
  width: 100%;
  display: block;
  background-color: #58544E;
  color: #fff;
  padding: 15% 12%;
  text-align: left;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  position: relative;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  border: #333 solid 1px;
}
#threeMinutes #linkArea .container .textLinkArea__link:after {
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  content: url("/-/media/image/whymitsui/link/right.svg");
  display: block;
  width: 8px;
  position: absolute;
  top: 40%;
  bottom: 0;
  right: 10%;
  margin: auto;
}
#threeMinutes #linkArea .container .textLinkArea__link:hover {
  background-color: #000;
  border: #333 solid 1px;
}
#threeMinutes #linkArea .container .textLinkArea__link:hover:after {
  right: 5%;
}

footer {
  width: 100%;
  background-color: #292623;
  position: relative;
  text-align: center;
  min-height: 150px;
  padding: 3% 1% 1% 1%;
}

.footerArea {
  width: 100%;
  padding: 0 1%;
}
.footerArea .pagetopLinkArea {
  display: inline-block;
  position: absolute;
  right: -30px;
  top: -60px;
  transform: rotate(-90deg);
}
@media screen and (max-width: 880px) {
  .footerArea .pagetopLinkArea {
    top: -40px;
  }
}
.footerArea .pagetopLinkArea .pagetopLink {
  padding: 10px 25px 12px 25px;
  border-radius: 40px;
  display: inline-block;
  background-color: #3d3d3e;
  background-color: #444;
  text-decoration: none;
  color: #ddd;
  font-size: 0.8rem;
}
.footerArea .pagetopLinkArea .pagetopLink:after {
  content: ">";
  padding-left: 20px;
}
.footerArea .pagetopLinkArea .pagetopLink:hover {
  background-color: #000;
}
.footerArea .copyright {
  width: 100%;
  padding-top: 50px;
  text-align: center;
  color: #999;
  font-size: 0.8rem;
}
@media screen and (max-width: 880px) {
  .footerArea .copyright {
    text-align: center;
    padding-bottom: 10px;
    padding-top: 80px;
  }
}

/*# sourceMappingURL=main.css.map */
