@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

html {
  color: #000;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  position: absolute;
  top: -90px;
  left: 0;
  width: 100%;
  z-index: 500;
  /* ----------------------------- */
  /* SBI用ヘッダー */
  /* ----------------------------- */
}
.c-header .header-wrap {
  padding: 0 min(40px, 2.0833333333vw);
  height: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #002F37;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-header .menu-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-header .menu-list > li:last-child > a {
  padding-right: min(60px, 3.125vw);
}
.c-header .menu-list > li > a {
  color: #fff;
  font-size: 24px;
  padding: 0 min(24px, 1.25vw);
  line-height: 1.45;
}
.c-header .toggle-btn {
  display: none;
  width: 30px;
  height: 30px;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}
.c-header .toggle-btn.active .line:first-child {
  -webkit-transform: rotate(-45deg) translate(0px, 9px);
          transform: rotate(-45deg) translate(0px, 9px);
}
.c-header .toggle-btn.active .line:nth-child(2) {
  display: none;
}
.c-header .toggle-btn.active .line:last-child {
  -webkit-transform: rotate(45deg) translate(0px, -9px);
          transform: rotate(45deg) translate(0px, -9px);
}
.c-header .toggle-btn .inn {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 17px;
}
.c-header .toggle-btn .inn .line {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  display: block;
  width: 100%;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .toggle-btn .inn .line:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-header .toggle-btn .inn .line:last-child {
  top: initial;
  bottom: 0;
}
.c-header.sbi .header-wrap {
  background: #fff;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 min(115px, 5.9895833333vw) 0 min(96px, 5vw);
}
.c-header.sbi .logo1 > a, .c-header.sbi .logo2 > a {
  display: block;
}

.menu-block {
  display: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  top: 70px;
  left: 0;
  width: 100%;
  position: fixed;
  background: #002F37;
  pointer-events: none;
  z-index: 999;
  text-align: center;
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    display: none;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    display: block;
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    display: none;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    display: block;
  }
}
.menu-block.is-active {
  display: block;
  -webkit-animation: slideDown 0.3s ease;
          animation: slideDown 0.3s ease;
  pointer-events: all;
}
.menu-block a {
  display: block;
  border-top: 1px solid #fff;
  padding: 20px 0;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding-left: 24px;
  background: #002F37;
}

.cover-bg {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 20;
  display: none;
  pointer-events: none;
}
.cover-bg.is-active {
  display: block;
  pointer-events: all;
}

.footer {
  background: #002F37;
  color: #fff;
}
.footer .footer__inner {
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.823em 0;
}
.footer .footer__inner .footer-info {
  width: 60%;
}
.footer .footer__inner .footer-info__name {
  font-weight: 700;
  margin-bottom: 0.25em;
}
.footer .footer__inner .footer-info__list {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0 1em;
  font-size: 0.75em;
  color: #8e8e8e;
  line-height: 1.8;
  margin-top: 15px;
}
.footer .footer__inner .footer__logo {
  line-height: 1;
}
.footer .footer__inner .footer__logo img {
  width: 21.4545454545vw;
  max-width: 236px;
}

.c-ttl01 {
  text-align: center;
  font-weight: bold;
  font-size: 54px;
  color: #002F37;
  margin: 0 auto;
  line-height: 1.2857142857;
}
.c-ttl01.white {
  color: #fff;
  font-size: 54px;
}
.c-ttl01.white rt {
  font-size: 20px;
}
.c-ttl01.white .line {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(68%, transparent), color-stop(0, rgb(255, 84, 0)));
  background-image: linear-gradient(transparent 68%, rgb(255, 84, 0) 0);
  background-position-y: -4px;
}
.c-ttl01 .line {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(68%, transparent), color-stop(0, rgba(255, 84, 0, 0.6)));
  background-image: linear-gradient(transparent 68%, rgba(255, 84, 0, 0.6) 0);
  background-repeat: no-repeat;
  background-size: 0;
  -webkit-transition: background-size 1s ease-in;
  transition: background-size 1s ease-in;
  background-position-y: -4px;
}
.c-ttl01 + .c-txt01 {
  margin-top: 10px;
}
.c-ttl01.active .line {
  background-size: 100%;
}

.graph-ttl {
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  margin: 0 auto 35px;
  position: relative;
  color: #002F37;
  position: relative;
  text-align: center;
}
.graph-ttl .sub-ttl {
  display: block;
  font-size: 16px;
  color: #727272;
}

.c-btn01 {
  background: #ff5400;
  text-align: center;
  max-width: 400px;
  width: 100%;
  display: inline-block;
  color: #fff;
  border-radius: 80px;
  font-weight: bold;
  font-size: 30px;
  padding: 22px 0;
  font-weight: bold;
  border: 1px solid #ff5400;
}

.c-btn02 {
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 34px 0;
  background: #ff5400;
  border: 1px solid #ff5400;
  display: block;
  width: 50%;
}
.c-btn02 .bottom::after {
  border-color: #ff5400;
}
.c-btn02 .top {
  display: block;
  font-size: 32px;
  line-height: 1.2;
}
.c-btn02 .bottom {
  font-size: 46px;
  position: relative;
  line-height: 1.2;
}
.c-btn02 .bottom::before {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 0;
  right: -35px;
  margin: auto;
  background: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn02 .bottom::after {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 0px;
  right: -25px;
  margin: auto;
  border-right: 3px solid #ff5400;
  border-top: 3px solid #ff5400;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 2px;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.ai-block, .uranium-block {
  display: none;
}
.ai-block.active, .uranium-block.active {
  display: block;
}

.graph-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.graph-wrap img {
  width: 100%;
}
.graph-wrap .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3d3935;
}

.c-btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.anm-list.is-animated li {
  -webkit-animation: fadeIn 1.5s both;
          animation: fadeIn 1.5s both;
}
.anm-list li {
  -webkit-filter: opacity(0);
          filter: opacity(0);
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-filter: opacity(0);
            filter: opacity(0);
  }
  100% {
    -webkit-filter: opacity(1);
            filter: opacity(1);
  }
}

@keyframes fadeIn {
  0% {
    -webkit-filter: opacity(0);
            filter: opacity(0);
  }
  100% {
    -webkit-filter: opacity(1);
            filter: opacity(1);
  }
}
.c-txt01 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

.txt-or {
  color: #ff5400;
}

.img-box-max {
  width: 100%;
  background-color: #3D3935;
  position: relative;
}
.img-box-max img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: #002F37;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.8;
}
.check-list li + li {
  margin-top: 0px;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  -webkit-mask: url(../img/check.svg) no-repeat center/contain;
          mask: url(../img/check.svg) no-repeat center/contain;
  width: 22px;
  height: 17px;
  background-color: #8EB1B2;
}
.check-list .txt-or {
  color: #ff5400;
}

.js-fadeInUp {
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
}
.js-fadeInUp.is-visible {
  opacity: 1;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}

.js-fvfadeInUp {
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
}
.js-fvfadeInUp.is-visible {
  opacity: 1;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}

.noto-txt {
  margin-top: 20px;
  font-size: 14px;
  color: #727272;
}

/* js-scrollable style */
.js-scrollable .scroll-hint-icon {
  background: url("../img/scrollable.svg") no-repeat center/cover;
  left: calc(37% - 60px);
  top: calc(55% - 25px);
}
.js-scrollable .scroll-hint-icon::before {
  display: none;
}
.js-scrollable .scroll-hint-icon::after {
  display: none;
}
.js-scrollable .scroll-hint-icon .scroll-hint-text {
  display: none;
}

.ttl-desc {
  line-height: 1.88;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  font-family: "M PLUS 1", sans-serif;
}

.attention {
  margin-top: 20px;
  text-align: left;
  color: #727272;
  font-size: 14px;
  line-height: 1.14;
}

.mv01.act .home .fv-block img.fv-img.us-main, .mv02.act .home .fv-block img.fv-img.us-main {
  -webkit-animation: opa 3s ease 1.2s forwards;
          animation: opa 3s ease 1.2s forwards;
}

.mv01 #floating-button-uranium {
  display: none;
}
.mv01 #modal_buying_uranium {
  display: none;
}

.mv02 .home .fv-block img.fv-img.us-uranium {
  display: block;
}
.mv02 .home .fv-block img.fv-img.us-ai {
  display: none;
}
.mv02 #floating-button-ai {
  display: none;
}
.mv02 #modal_buying_ai {
  display: none;
}

.home {
  margin-top: 90px;
  /* ---------------------------------- */
  /* AI&ビックデータ */
  /* ---------------------------------- */
}
@-webkit-keyframes opa {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opa {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.home .fv-block {
  position: relative;
  height: min(540px, 28.125vw);
}
.home .fv-block img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1) 0s, visibility 2s cubic-bezier(0.23, 1, 0.32, 1) 0.6s;
  transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1) 0s, visibility 2s cubic-bezier(0.23, 1, 0.32, 1) 0.6s;
}
.home .fv-block img.fv-img {
  z-index: 1;
  right: 0;
  left: auto;
  width: 100%;
}
.home .fv-block img.fv-img.us-main {
  z-index: 5;
}
.home .fv-block img.fv-img.us-ai {
  display: block;
}
.home .fv-block img.fv-img.us-uranium {
  display: none;
}
.home .point-block {
  padding: 108px 0 77px;
}
.home .point-block .point-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px auto;
  gap: 66px;
}
.home .point-block .point-list li {
  padding: 46px 27px 30px;
  background: #f8f8f8;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  position: relative;
  width: 33.3333333333%;
  font-family: "Inter", sans-serif;
}
.home .point-block .point-list .ttl {
  font-weight: 600;
  color: #ff5400;
  font-size: 22px;
  text-align: center;
  line-height: 1.38;
  width: auto;
  margin-top: -30px;
  padding: 4px 0 5px;
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
  height: 45px;
}
.home .point-block .point-list .txt {
  font-weight: bold;
  line-height: 1.2727272727;
  font-size: 22px;
}
.home .point-block .num {
  display: block;
  font-size: 50px;
  line-height: 1;
}
.home .tab-block {
  padding-top: 80px;
  padding-bottom: 115px;
}
.home .tab-block .tab-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.home .tab-block .tab {
  color: #fff;
  background: #d2d3d1;
  width: 50%;
  text-align: center;
  font-weight: bold;
  padding: 29px 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.home .tab-block .tab.active {
  background: #ff5400;
}
.home .tab-block .tab.active .bottom::after {
  border-color: #ff5400;
}
.home .tab-block .tab .top {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
}
.home .tab-block .tab .bottom {
  font-size: 32px;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}
.home .tab-block .tab .bottom::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 1px;
  right: -51px;
  margin: auto;
  background: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
}
.home .tab-block .tab .bottom::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 1px;
  right: -41px;
  margin: auto;
  border-right: 3px solid #d2d3d1;
  border-top: 3px solid #d2d3d1;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .tab-block .border-box {
  border: 3px solid #ff5400;
  padding: 4.3229166667vw 6.6145833333vw 5.2083333333vw;
  margin-bottom: 80px;
}
.home .tab-block .graph-wrap {
  padding-top: 58%;
  height: 0;
  position: relative;
}
.home .tab-block .graph-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home .tab-block .desc {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
  margin-top: 45px;
}
.home .movie-block {
  padding: 65px 0 120px;
  position: relative;
  z-index: 1;
}
.home .movie-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg01.jpg.webp") center/cover;
  z-index: -2;
}
.home .movie-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 47, 55, 0.5);
  z-index: -1;
}
.home .movie-block .graph-ttl {
  margin-bottom: 8px;
}
.home .movie-block .bg-white {
  background-color: #fff;
  padding: 84px 20px 122px;
  margin-top: 68px;
}
.home .movie-block .content {
  margin: auto;
  max-width: 1009px;
  text-align: center;
}
.home .movie-block .desc {
  font-weight: bold;
  color: #002F37;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}
.home .movie-block .graph-wrap {
  max-width: 720px;
}
.home .movie-block .attention {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 14px;
}
.home .bg-sea-block {
  background: #8eb1b2;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 60px;
  padding: 72px 0 92px;
}
.home .bg-sea-block .txt {
  position: relative;
}
.home .bg-sea-block .txt::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: 0;
  left: 0;
  margin: auto;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  border-width: 10px;
  width: 55px;
  height: 55px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.home .background-block {
  padding-top: 93px;
  padding-bottom: 96px;
  background: #f4f4f4;
}
.home .background-block .box-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 1fr));
  gap: min(90px, 4.6875vw);
}
.home .background-block .box {
  border: 8px solid #fff;
  border-radius: 20px;
  text-align: center;
  padding: 5px 5px 15px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
}
.home .background-block .box .top {
  font-weight: bold;
  font-size: 22px;
}
.home .background-block .box .tag {
  font-weight: bold;
  color: #fff;
  font-size: 30px;
  border-radius: 10px;
  padding: 3px 20px;
  margin: 0 auto 13px;
  display: inline-block;
}
.home .background-block .box img {
  display: block;
  text-align: center;
  margin: 0 auto;
  max-height: 113px;
}
.home .background-block .box .ttl {
  color: #002F37;
  font-size: 25px;
  margin-top: 16px;
}
.home .background-block .box.box-01 {
  border-color: #8eb1b2;
}
.home .background-block .box.box-01 .top {
  color: #8eb1b2;
}
.home .background-block .box.box-01 .tag {
  background: #8eb1b2;
}
.home .background-block .box.box-02 {
  border-color: #727272;
}
.home .background-block .box.box-02 .top {
  color: #727272;
}
.home .background-block .box.box-02 .tag {
  background: #727272;
}
.home .background-block .box.box-03 {
  border-color: #002F37;
}
.home .background-block .box.box-03 .top {
  color: #002F37;
}
.home .background-block .box.box-03 .tag {
  background: #002F37;
}
.home .society-solution-block {
  padding-top: 84px;
  padding-bottom: 118px;
}
.home .society-solution-block .inner-block {
  max-width: 1080px;
  background: #fff;
}
.home .society-solution-block .check-list {
  margin-top: 32px;
  margin-bottom: 40px;
}
.home .society-solution-block .graph-ttl {
  margin-bottom: 15px;
}
.home .society-solution-block .attention {
  margin-top: 32px;
}
.home .gdp-block {
  padding-top: 86px;
  background: #f4f4f4;
  padding-bottom: 120px;
}
.home .gdp-block .check-list {
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 20px;
  max-width: 1000px;
}
.home .gdp-block .graph-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1140px;
}
.home .gdp-block .graph-ttl {
  margin-bottom: 6px;
}
.home .industry-block {
  padding-top: 80px;
  padding-bottom: 123px;
}
.home .industry-block .inner-block {
  max-width: 1080px;
}
.home .industry-block .check-list {
  margin-top: 36px;
  margin-bottom: 24px;
}
.home .industry-block .graph-ttl {
  margin-bottom: 0px;
}
.home .decarbonization-block {
  background: #f4f4f4;
  padding-bottom: 65px;
}
.home .decarbonization-block .inner-block {
  padding-top: 80px;
  background: #fff;
  padding-bottom: 32px;
}
.home .decarbonization-block .c-ttl01 {
  font-size: 50px;
}
.home .decarbonization-block .tag-wrap {
  text-align: center;
}
.home .decarbonization-block .tag {
  font-weight: bold;
  color: #fff;
  display: inline-block;
  font-size: 35px;
  background: #8eb1b2;
  text-align: center;
  display: inline-block;
  margin: 0 auto 16px;
  border-radius: 10px;
  padding: 3px 43.5px;
  text-align: center;
}
.home .decarbonization-block .check-list {
  max-width: 1020px;
  margin: 26px auto 54px;
}
.home .decarbonization-block .graph-wrap {
  max-width: 1300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.home .decarbonization-block .graph-wrap .graph:first-child {
  width: 51%;
}
.home .decarbonization-block .graph-wrap .graph:last-child {
  width: 49%;
}
.home .decarbonization-block .graph-ttl {
  margin-bottom: 9px;
}
.home .dependence-block {
  padding-top: 105px;
  background: #f4f4f4;
  padding-bottom: 113px;
}
.home .dependence-block .c-ttl01 {
  font-size: 50px;
}
.home .dependence-block .tag-wrap {
  text-align: center;
}
.home .dependence-block .tag {
  font-weight: bold;
  color: #fff;
  display: inline-block;
  font-size: 35px;
  background: #727272;
  text-align: center;
  display: inline-block;
  margin: 0 auto 16px;
  border-radius: 10px;
  padding: 3px 22px;
  text-align: center;
}
.home .dependence-block .check-list {
  max-width: 1030px;
  margin: 19px auto 60px;
}
.home .dependence-block .graph-ttl {
  margin-bottom: 28px;
}
.home .requirement-block {
  background: #fff;
  padding-top: 121px;
  padding-bottom: 126px;
}
.home .requirement-block .c-ttl01 {
  font-size: 50px;
}
.home .requirement-block .tag-wrap {
  text-align: center;
}
.home .requirement-block .tag {
  font-weight: bold;
  color: #fff;
  display: inline-block;
  font-size: 35px;
  background: #002F37;
  text-align: center;
  display: inline-block;
  margin: 0 auto 16px;
  border-radius: 10px;
  padding: 3px 22px;
  text-align: center;
}
.home .requirement-block .check-list {
  max-width: 1000px;
  margin: 25px auto 56px;
}
.home .requirement-block .graph-wrap {
  max-width: 1300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(40px, 2.0833333333vw);
}
.home .requirement-block .graph-wrap .graph:first-child {
  width: 50%;
}
.home .requirement-block .graph-wrap .graph:last-child {
  width: 42%;
}
.home .requirement-block .graph-ttl {
  margin-bottom: -4px;
}
.home .requirement-block .attention {
  margin-top: 15px;
}
.home .environment-block {
  padding: 65px 0 120px;
  position: relative;
  z-index: 1;
}
.home .environment-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 47, 55, 0.6);
  z-index: -1;
}
.home .environment-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg02.jpg.webp") no-repeat center/cover;
  z-index: -2;
}
.home .environment-block .graph-wrap {
  max-width: 1300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(38px, 1.9791666667vw);
  margin-top: 53px;
}
.home .environment-block .graph-wrap .graph:first-child {
  width: 52%;
}
.home .environment-block .graph-wrap .graph:last-child {
  width: 45%;
}
.home .environment-block .graph-wrap .graph:last-child .graph-ttl {
  margin-bottom: -10px;
}
.home .environment-block .graph-ttl {
  margin-bottom: -4px;
}
.home .environment-block .attention {
  margin-top: 15px;
}
.home .environment-block .content {
  max-width: 1000px;
  margin: auto;
}
.home .environment-block .bg-white {
  background: #fff;
  padding: 87px 20px 125px 20px;
  margin-top: 59px;
}
.home .sector-block {
  padding: 82px 0 130px;
  background-color: #8EB1B2;
}
.home .sector-block .check-list {
  margin: 44px auto 60px;
  max-width: 1000px;
}
.home .sector-block .check-list li {
  color: #fff;
}
.home .sector-block .check-list li .txt-green {
  color: #002F37;
}
.home .sector-block .check-list li::after {
  background-color: #FF5400;
}
.home .sector-block .graph-wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(20px, 1.0416666667vw);
}
.home .sector-block .graph-ttl {
  margin-bottom: 13px;
}
.home .sector-block .attention {
  margin-top: 24px;
  color: #3D3935;
}
.home .sector-block .c-txt01 {
  color: #fff;
}
.home .btn-block {
  padding: 96px 0;
  background-color: #E5E6E5;
}
.home .btn-block .inner-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 60px;
}
.home .btn-block a {
  background-color: #ff5400;
  color: #fff;
  padding: 17px 20px 18px;
  width: 100%;
  text-align: center;
  border: 1px solid #ff5400;
  border-radius: 50px;
  font-size: 30px;
}
.home .performance-block {
  background-color: #F4F4F4;
  padding: 93px 0 107px;
}
.home .performance-block .bg-white {
  background: #fff;
  padding: 80px 20px 120px 20px;
  margin-top: 60px;
}
.home .performance-block .content {
  max-width: 1000px;
  margin: auto;
}
.home .performance-block .graph-wrap {
  margin: 0px auto 0;
  background: #fff;
}
.home .performance-block .attention {
  margin-top: 24px;
}
.home .about-block {
  padding: 78px 0 114px;
  position: relative;
  z-index: 1;
}
.home .about-block .inner-block {
  max-width: 1340px;
}
.home .about-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #002F37;
  opacity: 0.8;
  z-index: -1;
}
.home .about-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg03.jpeg.webp) center/cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.home .about-block .about-list {
  margin: 52px 0 100px;
}
.home .about-block .about-list > li {
  background: #fff;
  padding: 50px 100px 86px;
}
.home .about-block .about-list > li:not(:first-child) {
  margin-top: 75px;
}
.home .about-block .about-list > li:nth-child(2) .top-area .desc {
  margin-top: 6px;
}
.home .about-block .about-list .top-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 85px;
  max-width: 1060px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .about-block .about-list .ttl-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .about-block .about-list .ttl-area .num {
  color: #ff5400;
  position: relative;
  font-weight: bold;
  font-size: 59px;
  margin-top: -16px;
  -webkit-filter: opacity(0);
          filter: opacity(0);
}
.home .about-block .about-list .ttl-area .num.is-animated {
  -webkit-animation: fadeIn 1.5s both;
          animation: fadeIn 1.5s both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.home .about-block .about-list .ttl-area .num.is-animated::after {
  width: 95%;
}
.home .about-block .about-list .ttl-area .num::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  background: #ff5400;
  width: 0%;
  height: 5px;
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}
.home .about-block .about-list .ttl-area .ttl {
  font-size: 31px;
  font-weight: bold;
  margin-left: 41px;
  letter-spacing: 0.03em;
  color: #002F37;
}
.home .about-block .about-list .desc {
  width: 59%;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
}
.home .about-block .about-list .desc .point {
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
  margin-left: -6px;
}
.home .about-block .about-list .desc p {
  line-height: 1.6;
}
.home .about-block .about-list .graph-wrap {
  margin: 0 auto;
  text-align: center;
  padding-top: 0;
  height: auto;
}
.home .about-block .about-list .graph-wrap img {
  margin: -40px auto 0;
}
.home .about-block .about-list .graph-wrap img.is-visible {
  display: block;
}
.home .about-block .about-list .graph-ttl {
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  margin: 0 auto 35px;
  position: relative;
  color: #002F37;
  text-align: center;
}
.home .about-block .about-list .graph-ttl.underline {
  margin-bottom: 3px;
}
.home .about-block .about-list .graph-ttl.underline::after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 9px;
  left: 0;
  background: #333;
}
.home .about-block .about-list .graph-ttl-strong {
  font-weight: bold;
  color: #ff5400;
  font-size: 48px;
  margin-bottom: -54px;
  z-index: 1;
  position: relative;
}
.home .about-block .about-list .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 853px;
  margin: 0 auto;
}
.home .about-block .about-list .yen {
  font-size: 18px;
  font-weight: bold;
}
.home .about-block .about-list .graph-time {
  text-align: right;
  font-size: 14px;
  font-weight: bold;
  margin-right: 40px;
}
.home .about-block .about-list .graph-attention {
  max-width: 1010px;
  margin: 30px auto 0;
  font-size: 14px;
  text-align: left;
  color: #727272;
}
.home .about-block .mold-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0px auto;
  width: 100%;
  color: #002F37;
}
.home .about-block .mold-list > li {
  position: relative;
  width: 33.3333333333%;
  text-align: center;
  padding: 5px;
}
.home .about-block .mold-list > li::after {
  content: "";
  width: 1px;
  height: 95%;
  background: #d9d9d9;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}
.home .about-block .mold-list > li:last-child::after {
  display: none;
}
.home .about-block .mold-list .ttl {
  font-weight: bold;
}
.home .about-block .mold-list .icon {
  margin: 17px 0 30px;
}
.home .about-block .mold-list .txt {
  font-weight: bold;
}
.home .about-block .list-attention {
  margin-top: 20px;
  font-size: 14px;
}
.home .disclaimer-block {
  background: #f4f4f4;
  padding-top: 100px;
  padding-bottom: 6.77em;
}
.home .disclaimer-block .attention__list {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
}
.home .disclaimer-block .attention__list .list-item {
  overflow: hidden;
}
.home .disclaimer-block .attention__list .list-item.open .js-accordion__link::before {
  top: 45%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.home .disclaimer-block .attention__list .js-accordion__link {
  font-weight: 700;
  position: relative;
  border: none;
  cursor: pointer;
  background: #fff;
  padding: 15px 15px;
  font-size: 20px;
}
.home .disclaimer-block .attention__list .js-accordion__link::before {
  content: "";
  position: absolute;
  border-top: 2px solid #d4d4d4;
  border-right: 2px solid #d4d4d4;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 10px;
  height: 10px;
  top: 38%;
  right: 30px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.home .disclaimer-block .attention__list .js-accordion__content {
  background-color: #ffffff;
  padding-bottom: 15px;
  font-size: 1.1rem;
  color: #3d3935;
  padding: 0 15px 15px;
  line-height: 1.8;
}
.home .disclaimer-block .attention__list .js-accordion__content__inner {
  position: relative;
  border-top: 1px solid #d1d1d1;
  padding: 1.1em 0 0.5em;
}
.home .disclaimer-block .attention__list .js-accordion__content__inner .semiconductor {
  font-size: 14px;
}
.home .disclaimer-block .attention__list .d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.home .disclaimer-block .attention__list .mt-00 {
  margin-top: 0;
}
.home .disclaimer-block .attention__list .us-tech {
  display: none;
}
.home .ai-block .tab-block {
  padding-bottom: 118px;
}
.home .ai-block .tab-block .border-box {
  padding-bottom: 3.9583333333vw;
}
.home .ai-block .tab-block .desc {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 45px;
}
.home .ai-block .movie-block {
  padding: 83px 0 120px;
}
.home .ai-block .movie-block .check-list {
  text-align: left;
  max-width: 1040px;
  margin: 0 auto;
}
.home .ai-block .movie-block .content {
  max-width: 1140px;
}
.home .ai-block .movie-block .graph-wrap {
  max-width: none;
  margin-top: 20px;
}
.home .ai-block .movie-block .graph-ttl {
  margin-bottom: -25px;
  text-align: center;
  margin-right: 9.53125vw;
}
.home .ai-block .movie-block .attention {
  max-width: 1020px;
  margin-top: 32px;
}
.home .ai-block .environment-block {
  padding-top: 90px;
}
.home .ai-block .environment-block .bg-white {
  margin-top: 67px;
  padding-bottom: 114px;
}
.home .ai-block .environment-block .graph-wrap {
  margin-top: 20px;
  gap: min(15px, 0.78125vw);
}
.home .ai-block .performance-block {
  padding-top: 90px;
  padding-bottom: 120px;
}
.home .ai-block .performance-block .bg-white {
  margin-top: 60px;
  padding-top: 48px;
  padding-bottom: 70px;
}
.home .ai-block .performance-block .check-list {
  margin-bottom: 30px;
}
.home .ai-block .performance-block .graph-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 41px;
  gap: min(50px, 2.6041666667vw);
}
.home .ai-block .performance-block .graph-ttl {
  margin-bottom: 20px;
}

#pagetop {
  border-radius: 50%;
  background: #8EB1B2;
  color: #fff;
  position: relative;
  bottom: 10px;
  z-index: 100;
}
#pagetop > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: bold;
  position: relative;
  width: 72px;
  height: 72px;
}
#pagetop > a::after {
  content: "";
  position: absolute;
  border-top: 7px solid #fff;
  border-right: 7px solid #fff;
  width: 25px;
  height: 25px;
  top: 27px;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#pagetop > a .inn {
  width: 34px;
  height: 37px;
  position: absolute;
  bottom: -3px;
  margin: auto;
  white-space: nowrap;
}

/* .modal
 ----------------------------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  top: 0;
  left: 0;
  z-index: 501;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal__inner {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-25%);
          transform: translateX(-50%) translateY(-25%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 400px;
  max-height: calc(100vh - 20px);
  padding: 0px;
  margin-right: auto;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.modal.modal-is-open .modal__inner {
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.modal__button {
  position: absolute;
  top: 0;
  right: -45px;
  display: block;
  z-index: 3;
}

.modal__button a {
  display: block;
  width: 35px;
  height: 35px;
  z-index: 3;
}

.modal__button a::before, .modal__button a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  width: 2px;
  height: 100%;
  background: #ff5400;
}

.modal__button a::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.modal__button a::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-video-close-btn::before, .modal-video-close-btn::after {
  background: #ff5400;
}

/* .attention
----------------------------------------------------------------------------- */
.floating-button {
  position: fixed;
  right: 3vw;
  bottom: 10em;
  z-index: 20;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.floating-button a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2em;
  width: 180px;
  max-width: 16.3636363636vw;
  height: 180px;
  max-height: 16.3636363636vw;
  font-size: 1.113em;
  font-weight: bold;
  background: #ff5400;
  color: #FFF;
  border-radius: 100%;
  -webkit-animation: fluffy 4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
          animation: fluffy 4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1) 0.8s, visibility 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1) 0.8s, visibility 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

@-webkit-keyframes fluffy {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  5% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
  }
  25% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fluffy {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  5% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
  }
  25% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.floating-button a::after {
  display: inline-block;
  content: "";
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.4em solid currentcolor;
}
.floating-button a {
  opacity: 1;
  visibility: visible;
}

/* .modal
 ----------------------------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  top: 0;
  left: 0;
  z-index: 501;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal__inner {
  position: absolute;
  top: 6%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-25%);
          transform: translateX(-50%) translateY(-25%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 400px;
  max-height: calc(100vh - 60px);
  padding: 0px;
  margin-right: auto;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.modal.modal-is-open .modal__inner {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 20px;
  background-color: #ff5400;
}

.modal__button {
  position: absolute;
  top: 0;
  right: -45px;
  display: block;
  z-index: 3;
}

.modal__button a {
  display: block;
  width: 45px;
  height: 45px;
  z-index: 3;
}

.modal__button a::before, .modal__button a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  width: 2px;
  height: 100%;
  background: #ff5400;
}

.modal__button a::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.modal__button a::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-video-close-btn::before, .modal-video-close-btn::after {
  background: #ff5400;
}

.modal__inner .modal__content .intro-buying__content .inner_box .intro-buying__notes {
  color: #000000;
}

#modal_buying02.intro-buying .modal__content, #modal_buying03.intro-buying .modal__content {
  background-color: #ffffff;
}
.modal__button {
  top: -45px;
  right: 0;
}

.modal__button a::before,
.modal__button a::after {
  background-color: #ffffff;
}
.modal.modal-is-open .modal__inner .flexBox {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#modal_buying_ai .modal__inner section, #modal_buying_uranium .modal__inner section {
  position: relative;
  width: 100%;
  border-radius: 20px;
  padding-top: 20px;
}

#modal_buying.lp02 .modal__inner section {
  width: 100%;
}

.intro-buying__headline {
  margin: 0 -2.083em;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  background-color: #ff5400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 2;
}
.intro-buying__headline span.label {
  display: block;
  background-color: #fff;
  border-radius: 200px;
  color: #ff5400;
  font-size: 22px;
  padding: 1px 22px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -5px auto 0;
}

.intro-buying .modal__inner {
  width: 36.3636363636vw;
  max-width: 400px;
}

.intro-buying__content {
  text-align: center;
}

.intro-buying__content .box {
  padding-top: 35px;
  padding: 30px 45px;
  background-color: #fff;
  border-radius: 20px;
}

.intro-buying__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.09375vw 2.5rem;
}

.intro-buying__list li {
  width: calc(50% - 1.25rem);
  max-height: 104px;
  height: 4.53125vw;
}

.intro-buying__list li a {
  position: relative;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFF;
  border: #bcbebc solid 0.12em;
  border-radius: 20px;
  padding: 0.25em;
  -webkit-box-shadow: 2px 4px 10px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 4px 10px 4px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  overflow: hidden;
  height: 100%;
}
.intro-buying__list li a.daiwa01 img {
  padding: 0;
}

.intro-buying__list li a:hover {
  bottom: -0.12em;
  -webkit-box-shadow: 0em 0em 0em rgba(0, 0, 0, 0.25);
          box-shadow: 0em 0em 0em rgba(0, 0, 0, 0.25);
}

.intro-buying__list li a img {
  width: auto;
  height: inherit;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

.intro-buying__list li a img.daiwa-c {
  padding: 0.8333333333vw 1.0416666667vw;
}

.intro-buying__text {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.95em;
}

.intro-buying__notes {
  text-align: left;
  font-size: 0.75em;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #8e8e8e;
  margin-top: 1.35em;
}

.intro-buying__notes .text-md-center {
  text-align: center;
}

.intro-buying__text {
  color: #002f37;
  margin-top: 20px;
  line-height: 1.5;
  font-size: 1.75rem;
}

.js-mask_block {
  width: 100%;
  overflow: hidden;
}

.modal__button {
  top: -34px;
  right: -17px;
}

.modal__button a::before,
.modal__button a::after {
  background-color: #ffffff;
}

.floating-button a::after {
  display: none;
}

.floating-button a {
  position: relative;
  width: 152px;
  height: 152px;
}
.floating-button a .line {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 30px;
  margin: auto;
  background: #fff;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.floating-button a .line::after {
  content: "";
  border-top: 2px solid #ff5400;
  border-right: 2px solid #ff5400;
  position: absolute;
  background: transparent;
  border-left-color: transparent;
  right: 0;
  left: 0;
  bottom: 9px;
  margin: auto;
  width: 8px;
  height: 8px;
  display: block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.bg_green {
  background-color: #002f38;
}
/* IOS用調整 */
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-header {
    top: -50px;
  }
  .c-header .header-wrap {
    height: 50px;
    padding: 0 min(18px, 4.8vw);
  }
  .c-header .logo {
    width: min(133px, 35.4666666667vw);
  }
  .c-header .logo img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-header .menu-list {
    display: none;
  }
  .c-header .toggle-btn {
    display: block;
  }
  .c-header.sbi .header-wrap {
    padding: 7px 18px 0;
  }
  .c-header.sbi .logo1 {
    width: min(81px, 21.6vw);
  }
  .c-header.sbi .logo2 {
    width: min(123px, 32.8vw);
  }
  .menu-block {
    top: 50px;
  }
  .menu-block a {
    padding: 11px 0;
  }
  .footer {
    text-align: center;
  }
  .footer .footer__inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 7.5vw;
  }
  .footer .footer__inner .footer-info {
    width: 100%;
  }
  .footer .footer__inner .footer-info__name {
    font-size: 4vw;
    margin-bottom: 0;
  }
  .footer .footer__inner .footer-info__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10px;
    font-size: 3vw;
  }
  .footer .footer__inner .footer__logo {
    margin-top: 7.5vw;
  }
  .footer .footer__inner .footer__logo img {
    width: 45.5vw;
    max-width: none;
  }
  .c-ttl01 {
    font-size: 20px;
  }
  .c-ttl01.white {
    font-size: 20px;
  }
  .c-ttl01.white rt {
    font-size: 8px;
  }
  .c-ttl01.white .line {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0, rgb(255, 84, 0)));
    background-image: linear-gradient(transparent 80%, rgb(255, 84, 0) 0);
    background-position-y: -3px;
  }
  .c-ttl01 .line {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0, rgba(255, 84, 0, 0.6)));
    background-image: linear-gradient(transparent 80%, rgba(255, 84, 0, 0.6) 0);
    background-position-y: -3px;
  }
  .graph-ttl {
    font-size: 14px;
  }
  .graph-ttl .sub-ttl {
    font-size: 10px;
  }
  .c-btn01 {
    font-size: 12px;
    padding: 11px 0;
  }
  .c-btn02 {
    padding: 13px 0;
    border-radius: 8px;
    width: 100%;
  }
  .c-btn02 .top {
    font-size: 12px;
  }
  .c-btn02 .bottom {
    font-size: 22px;
    display: block;
  }
  .c-btn02 .bottom::before {
    bottom: initial;
    top: -7px;
    right: 19px;
    width: 25px;
    height: 25px;
  }
  .c-btn02 .bottom::after {
    bottom: initial;
    top: -1px;
    right: 28px;
  }
  .c-btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-txt01 {
    font-size: 10px;
  }
  .check-list li {
    font-size: 12px;
    padding-left: 16px;
    line-height: 1.4;
  }
  .check-list li + li {
    margin-top: 4px;
  }
  .check-list li::after {
    width: 13px;
    height: 13px;
    top: 1px;
  }
  .noto-txt {
    font-size: 10px;
  }
  .js-scrollable .scroll-hint-icon {
    width: 101px;
    height: 50px;
    top: calc(62% - 25px);
  }
  .ttl-desc {
    font-size: 12px;
  }
  .attention {
    margin-top: 8px;
    font-size: 10px;
  }
  .home {
    margin-top: 50px;
  }
  .home .fv-block {
    height: 102vw;
  }
  .home .point-block {
    padding: 24px 0 18px;
  }
  .home .point-block .point-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 25px 0;
    gap: 40px;
  }
  .home .point-block .point-list li {
    width: 100%;
    padding: 14px 12px 15px;
  }
  .home .point-block .point-list .ttl {
    font-size: 11px;
    padding: 0;
    width: 100px;
    height: 25px;
    top: -28px;
  }
  .home .point-block .point-list .txt {
    font-size: 13px;
  }
  .home .point-block .num {
    font-size: 24px;
  }
  .home .tab-block {
    padding-top: 27px;
    padding-bottom: 40px;
  }
  .home .tab-block .tab {
    padding: 12px 0;
  }
  .home .tab-block .tab.active .bottom::after {
    border-color: #fff;
  }
  .home .tab-block .tab .top {
    font-size: 12px;
    margin-bottom: -3px;
  }
  .home .tab-block .tab .bottom {
    font-size: 12px;
  }
  .home .tab-block .tab .bottom::before {
    display: none;
  }
  .home .tab-block .tab .bottom::after {
    right: 0;
    left: 0;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    border-color: #fff;
    border-width: 2px;
    width: 8px;
    height: 8px;
    top: initial;
    bottom: -6px;
  }
  .home .tab-block .border-box {
    padding: 5.6vw 4vw 10.6666666667vw;
    margin-bottom: 22px;
  }
  .home .tab-block .graph-wrap {
    padding-top: 50%;
    width: 89%;
    margin: 0 auto;
  }
  .home .tab-block .desc {
    margin-top: 13px;
    font-size: 10px;
  }
  .home .movie-block {
    padding: 29px 0 40px;
  }
  .home .movie-block::before {
    background: url("../img/bg01_sp.jpg.webp") center/cover;
  }
  .home .movie-block .graph-ttl {
    margin-bottom: 4px;
  }
  .home .movie-block .bg-white {
    padding: 35px 15px 28px;
    margin-top: 26px;
  }
  .home .movie-block .desc {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .home .movie-block .attention {
    font-size: 10px;
    margin-top: 7px;
  }
  .home .bg-sea-block {
    font-size: 22px;
    padding: 23px 0 40px;
  }
  .home .bg-sea-block .txt::after {
    width: 20px;
    height: 20px;
    border-width: 5px;
    bottom: -20px;
  }
  .home .background-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .home .background-block .inner-block {
    padding: 0 18px;
  }
  .home .background-block .box-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px 20px;
  }
  .home .background-block .box {
    width: min(157px, 41.8666666667vw);
    border-width: 3px;
    border-radius: 10px;
    padding: 5px 2px 3px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .background-block .box .top {
    font-size: 10px;
    line-height: 1.2;
  }
  .home .background-block .box .tag {
    font-size: 12px;
    border-radius: 5px;
    padding: 1px 10px;
    margin: 3px auto 0;
  }
  .home .background-block .box img {
    max-height: 57px;
  }
  .home .background-block .box .ttl {
    font-size: 12px;
    margin-top: 11px;
    line-height: 1.4;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .home .background-block .box.box-01 .ttl {
    margin-top: -1px;
  }
  .home .society-solution-block {
    padding-top: 30px;
    padding-bottom: 42px;
  }
  .home .society-solution-block .c-ttl01 {
    font-size: 19px;
  }
  .home .society-solution-block .check-list {
    margin-top: 18px;
    padding: 0 15px;
    margin-bottom: 25px;
  }
  .home .society-solution-block .graph-ttl {
    margin-bottom: 5px;
  }
  .home .society-solution-block .attention {
    margin-top: 10px;
  }
  .home .gdp-block {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .home .gdp-block .check-list {
    padding: 0 10px;
    margin-top: 14px;
    margin-bottom: 32px;
  }
  .home .gdp-block .graph-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: min(26px, 6.9333333333vw);
  }
  .home .gdp-block .graph-wrap .graph:last-child .attention {
    margin-top: -8px;
  }
  .home .gdp-block .graph-wrap img {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
  .home .gdp-block .graph-ttl {
    margin-bottom: 3px;
  }
  .home .gdp-block .attention {
    margin: 0 auto;
    margin-top: 16px;
    width: 90%;
  }
  .home .industry-block {
    padding-top: 30px;
    padding-bottom: 42px;
  }
  .home .industry-block .check-list {
    margin-top: 18px;
    margin-bottom: 20px;
    padding: 0 15px;
  }
  .home .industry-block .graph-ttl {
    margin-bottom: 10px;
  }
  .home .industry-block img {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
  .home .industry-block .attention {
    margin-top: 5px;
  }
  .home .decarbonization-block {
    padding-bottom: 0px;
  }
  .home .decarbonization-block .inner-block {
    padding: 0 27px;
    padding-top: 27px;
    padding-bottom: 27px;
  }
  .home .decarbonization-block .c-ttl01 {
    font-size: 18px;
  }
  .home .decarbonization-block .tag {
    font-size: 12px;
    border-radius: 5px;
    padding: 1.5px 13px;
    margin-bottom: 3px;
  }
  .home .decarbonization-block .check-list {
    margin: 17px auto 42px;
  }
  .home .decarbonization-block .graph-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .decarbonization-block .graph-wrap .graph:first-child {
    width: 100%;
  }
  .home .decarbonization-block .graph-wrap .graph:last-child {
    width: 100%;
  }
  .home .decarbonization-block .graph-ttl {
    margin-bottom: -3px;
  }
  .home .decarbonization-block .attention {
    margin-top: 5px;
  }
  .home .dependence-block {
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .home .dependence-block .inner-block {
    padding: 0 37px;
  }
  .home .dependence-block .c-ttl01 {
    font-size: 18px;
  }
  .home .dependence-block .tag {
    font-size: 12px;
    border-radius: 5px;
    padding: 2px 11.5px;
    margin-bottom: 3px;
  }
  .home .dependence-block .check-list {
    margin: 14px auto 15px;
  }
  .home .dependence-block .graph-ttl {
    margin-bottom: 10px;
  }
  .home .requirement-block {
    padding-top: 29px;
    padding-bottom: 20px;
  }
  .home .requirement-block .inner-block {
    padding: 0 37px;
  }
  .home .requirement-block .c-ttl01 {
    font-size: 18px;
  }
  .home .requirement-block .tag {
    font-size: 12px;
    border-radius: 5px;
    padding: 2px 11.5px;
    margin-bottom: 3px;
  }
  .home .requirement-block .check-list {
    margin: 15px auto 25px;
  }
  .home .requirement-block .graph-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: min(23px, 6.1333333333vw);
  }
  .home .requirement-block .graph-wrap .graph:first-child {
    width: 100%;
  }
  .home .requirement-block .graph-wrap .graph:last-child {
    width: 100%;
  }
  .home .requirement-block .attention {
    margin-top: 8px;
  }
  .home .environment-block {
    padding: 27px 0 40px;
  }
  .home .environment-block::before {
    background: url("../img/bg02_sp.jpg.webp") no-repeat center/cover;
  }
  .home .environment-block .graph-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 16px;
    gap: min(20px, 5.3333333333vw);
  }
  .home .environment-block .graph-wrap .graph:first-child {
    width: 100%;
  }
  .home .environment-block .graph-wrap .graph:last-child {
    width: 100%;
  }
  .home .environment-block .graph-wrap .graph:last-child .graph-ttl {
    margin-bottom: -34px;
  }
  .home .environment-block .attention {
    margin-top: 8px;
  }
  .home .environment-block .bg-white {
    padding: 30px 15px 30px;
    margin-top: 26px;
  }
  .home .sector-block {
    padding: 32px 0 40px;
  }
  .home .sector-block .inner-block {
    padding: 0 35px;
  }
  .home .sector-block .check-list {
    margin-top: 19px;
    margin-bottom: 0px;
  }
  .home .sector-block .check-list li {
    color: #fff;
  }
  .home .sector-block .graph-wrap {
    margin-top: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: min(35px, 9.3333333333vw);
  }
  .home .sector-block .graph-ttl {
    margin-bottom: 5px;
  }
  .home .sector-block .attention {
    margin-top: 10px;
  }
  .home .btn-block {
    padding: 21px 0 22px;
  }
  .home .btn-block .inner-block {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
  .home .btn-block a {
    max-width: 294px;
    width: 45.9375vw;
    font-size: 14px;
    padding: 7px 10px;
    margin: auto;
  }
  .home .performance-block {
    padding: 27px 0 40px;
  }
  .home .performance-block .bg-white {
    padding: 32px 10px 54px;
    margin-top: 20px;
  }
  .home .performance-block .graph-wrap {
    padding: 10px 0px;
    margin-top: 8px;
  }
  .home .performance-block .attention {
    margin-top: 18px;
  }
  .home .about-block {
    padding: 41px 0 80px;
  }
  .home .about-block .br-pc {
    display: none;
  }
  .home .about-block::after {
    background-image: url(../img/bg03_sp.jpg.webp);
  }
  .home .about-block .about-list {
    margin-top: 22px;
    margin-bottom: 40px;
  }
  .home .about-block .about-list > li {
    padding: 30px 15px 30px;
  }
  .home .about-block .about-list > li:not(:first-child) {
    margin-top: 25px;
  }
  .home .about-block .about-list .top-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 16px;
  }
  .home .about-block .about-list .ttl-area {
    width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .home .about-block .about-list .ttl-area .num {
    font-size: 29px;
    line-height: 1.03;
    margin-top: 0;
    letter-spacing: 0.1em;
  }
  .home .about-block .about-list .ttl-area .num.is-animated::after {
    width: 100%;
  }
  .home .about-block .about-list .ttl-area .num::after {
    height: 2px;
    bottom: -6px;
  }
  .home .about-block .about-list .ttl-area .ttl {
    font-size: 16px;
    margin-left: 10px;
    line-height: 1.5;
  }
  .home .about-block .about-list .desc {
    font-size: 12px;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 11px;
  }
  .home .about-block .about-list .desc .point {
    font-size: 10px;
    display: block;
    margin-left: 0;
  }
  .home .about-block .about-list .desc p {
    line-height: 1.83;
  }
  .home .about-block .about-list .graph-wrap img {
    margin-top: -20px;
  }
  .home .about-block .about-list .graph-ttl {
    font-size: 12px;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  .home .about-block .about-list .graph-ttl-strong {
    font-size: 24px;
    margin-bottom: -30px;
  }
  .home .about-block .about-list .graph-attention {
    font-size: 10px;
    margin-top: 15px;
  }
  .home .about-block .mold-list {
    position: relative;
    display: block;
    margin-top: -32px;
  }
  .home .about-block .mold-list > li {
    padding: 15px 5px;
    position: static;
    display: grid;
    grid-template-columns: 80px auto;
    grid-template-rows: auto auto;
    width: 100%;
    text-align: left;
    font-size: 10px;
    gap: 0px 5px;
  }
  .home .about-block .mold-list > li + li {
    border-top: 1px solid #d9d9d9;
  }
  .home .about-block .mold-list > li:not(:first-child) {
    margin-top: 0;
  }
  .home .about-block .mold-list > li::after {
    content: none;
  }
  .home .about-block .mold-list .ttl {
    margin-top: 15px;
  }
  .home .about-block .mold-list .icon {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    grid-row: 1/4;
    grid-column: 1/2;
    margin: 10px;
    width: 60px;
  }
  .home .about-block .list-attention {
    position: absolute;
    bottom: 50px;
    font-size: 10px;
  }
  .home .disclaimer-block {
    padding-top: 16px;
    padding-bottom: 1.85em;
  }
  .home .disclaimer-block .inner-block {
    padding: 0 10px;
  }
  .home .disclaimer-block .attention__list {
    margin-top: 30px;
    gap: 1em;
  }
  .home .disclaimer-block .attention__list .js-accordion__link {
    font-size: 4vw;
    padding: 10px;
  }
  .home .ai-block .tab-block {
    padding-bottom: 50px;
  }
  .home .ai-block .tab-block .border-box {
    padding-bottom: 5.3333333333vw;
  }
  .home .ai-block .tab-block .desc {
    font-size: 10px;
    margin-top: 12px;
  }
  .home .ai-block .movie-block {
    padding: 28px 0 41px;
  }
  .home .ai-block .movie-block .bg-white {
    padding: 35px 10px 43px;
  }
  .home .ai-block .movie-block .graph-wrap {
    margin-top: 27px;
  }
  .home .ai-block .movie-block .graph-ttl {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .home .ai-block .movie-block .attention {
    margin-top: 19px;
  }
  .home .ai-block .environment-block {
    padding-top: 30px;
  }
  .home .ai-block .environment-block .bg-white {
    margin-top: 30px;
    padding-bottom: 45px;
  }
  .home .ai-block .environment-block .graph-wrap {
    margin-top: 17px;
    gap: 20px;
  }
  .home .ai-block .environment-block .graph-wrap .graph:last-child .graph-ttl {
    margin-bottom: 1px;
  }
  .home .ai-block .environment-block .graph-wrap img {
    /* width: 95%; */
    margin: 0 auto;
  }
  .home .ai-block .environment-block .graph-ttl {
    margin-bottom: 4px;
  }
  .home .ai-block .environment-block .attention {
    margin-top: 10px;
  }
  .home .ai-block .performance-block {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .home .ai-block .performance-block .bg-white {
    margin-top: 18px;
    padding-top: 33px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 57px;
  }
  .home .ai-block .performance-block .check-list {
    margin-bottom: 0px;
  }
  .home .ai-block .performance-block .graph-wrap {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    padding: 0;
  }
  .home .ai-block .performance-block .graph-ttl {
    margin-bottom: 5px;
  }
  #pagetop > a {
    width: 10vw;
    height: 10vw;
    font-size: 9px;
  }
  #pagetop > a::after {
    right: 0;
    top: 3.125vw;
    width: 4.375vw;
    height: 4.375vw;
    border-width: 4px;
  }
  #pagetop > a .inn {
    width: 19px;
    height: 35px;
    right: 0;
    left: 0;
    bottom: -11px;
  }
  .modal__inner {
    width: 84vw;
    max-width: none;
    max-height: calc(100vh - 20px);
  }
  .modal__content {
    border-width: 1.5vw;
  }
  .modal__button {
    top: -45px;
    right: 0;
  }
  .floating-button {
    bottom: 70px;
  }
  .floating-button a {
    max-width: none;
    max-height: none;
  }
  .modal {
    top: 0px;
  }
  .modal__content {
    height: 85%;
  }
  .modal__button a {
    width: 25px;
    height: 25px;
  }
  .modal__inner {
    width: 84vw;
    max-width: none;
    max-height: calc(100vh - 49px);
    top: 10%;
  }
  .modal__content {
    border-width: 1.5vw;
  }
  .modal__button {
    top: -58px;
    right: 9px;
  }
  .intro-buying__headline {
    height: auto;
  }
  #modal_buying_ai .modal__inner, #modal_buying_uranium .modal__inner {
    display: block;
  }
  #modal_buying_ai .modal__inner .flexBox, #modal_buying_uranium .modal__inner .flexBox {
    position: absolute;
    top: -30px;
    left: 50%;
    width: 76.875vw;
    max-width: none;
    max-height: calc(100vh - 125px);
    padding: 0px;
    margin-right: auto;
    margin-left: auto;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .modal.modal-is-open .modal__inner .flexBox {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #modal_buying_ai .modal__inner .flexBox, #modal_buying_uranium .modal__inner .flexBox {
    display: block;
    overflow-y: scroll;
    border-radius: 20px;
    padding: 9px 10px;
    background-color: #ff5400;
  }
  #modal_buying_ai .modal__inner section, #modal_buying_uranium .modal__inner section {
    position: relative;
    width: 100%;
    border-radius: 10px;
  }
  .intro-buying__headline {
    margin: 0 -6vw 2.34375vw;
    font-size: 5.33vw;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    background-color: #ff5400;
  }
  .intro-buying__headline span {
    font-size: 11px;
  }
  .intro-buying__headline span.label {
    font-size: 10px;
    padding: 1px 5px;
    margin-top: 2px;
  }
  .intro-buying__content .box {
    padding: 2.1875vw 3.125vw;
    border-radius: 10px;
  }
  .intro-buying__list {
    gap: 2.4vw;
  }
  .intro-buying__list li {
    width: 100%;
    height: 12.8125vw;
  }
  .intro-buying__list li a {
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.25);
            box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.25);
    padding: 0.3em;
  }
  .intro-buying__list li a.daiwa01 {
    padding: 0;
  }
  .intro-buying__list li a img {
    max-height: 68px;
    height: auto;
  }
  .intro-buying__list li a img.daiwa-c {
    padding: 2.4vw;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .intro-buying__text {
    margin-top: 10px;
  }
  .floating-button a {
    font-size: 10px;
    width: 80px;
    height: 80px;
  }
  .floating-button a .line {
    width: 15px;
    height: 15px;
    bottom: 10px;
  }
  .floating-button a .line::after {
    width: 5px;
    height: 5px;
    bottom: 5px;
  }
  .intro-buying .modal__inner {
    width: 84vw;
    max-width: none;
  }
  .intro-buying__list {
    gap: 2.8125vw;
  }
  .intro-buying__list li a img {
    height: inherit;
    padding: 0.625vw;
  }
  .intro-buying__text {
    font-size: 12px;
  }
  .intro-buying__notes {
    font-size: 10px;
    margin-top: 3px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1340px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-header .logo {
    width: min(266px, 13.8541666667vw);
  }
  .c-header .menu-list > li > a:hover {
    color: #ff5400;
  }
  .c-btn01:hover {
    background: #fff;
    color: #ff5400;
  }
  .c-btn02:hover {
    opacity: 0.75;
  }
  .js-scrollable .scroll-hint-icon {
    width: 250px;
    height: 121px;
  }
  .home .nav-block {
    background: #002F37;
    padding: 25px 0 44px;
  }
  .home .nav-block .nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 20px;
    color: #fff;
    margin: 0 20px;
  }
  .home .nav-block .nav-list li {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .home .nav-block .nav-list li > a {
    padding: 37px 20px;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: relative;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    color: #002F37;
    text-align: center;
    background: #fff;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .home .nav-block .nav-list li > a::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-top: 3px solid #002F37;
    border-right: 3px solid #002F37;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    position: relative;
    right: 0;
    left: 0;
    bottom: -10px;
    margin: auto;
  }
  .home .background-block .box:hover {
    opacity: 0.8;
  }
  .home .gdp-block .graph-wrap .graph:first-child .attention {
    margin-top: 40px;
  }
  .home .gdp-block .graph-wrap .graph:last-child .attention {
    margin-top: 28px;
  }
  .home .decarbonization-block .attention {
    width: 82%;
    margin: 15px auto 0;
  }
  .home .requirement-block .attention {
    width: 90%;
    margin: 15px auto 0;
  }
  .home .environment-block .graph-wrap .graph:first-child .graph-ttl {
    margin-bottom: 7px;
  }
  .home .environment-block .graph-wrap .graph:first-child .attention {
    margin-top: 48px;
  }
  .home .btn-block a:hover {
    color: #ff5400;
    background-color: #fff;
  }
  .home .performance-block .graph-wrap img {
    width: 86%;
    display: block;
    margin: 0 auto;
  }
  .home .about-block .mold-list .txt {
    margin-bottom: 33px;
  }
  .home .disclaimer-block .attention__list .js-accordion__link:hover {
    color: #002F37;
  }
  .home .ai-block .environment-block .graph-wrap .graph:first-child {
    width: 48%;
  }
  .home .ai-block .environment-block .graph-wrap .graph:first-child .attention {
    margin-top: 10px;
  }
  .home .ai-block .environment-block .graph-wrap .graph:last-child {
    width: 50%;
  }
  .home .ai-block .environment-block .graph-wrap .graph:last-child .graph-ttl {
    margin-bottom: 7px;
  }
  .home .ai-block .performance-block .graph-wrap .graph {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .home .ai-block .performance-block .graph-wrap .graph:first-child {
    width: 45%;
  }
  .home .ai-block .performance-block .graph-wrap .graph:first-child .attention {
    margin-top: 0px;
  }
  .home .ai-block .performance-block .graph-wrap .graph:last-child {
    width: 54%;
  }
  .home .ai-block .performance-block .graph-wrap .graph:last-child .attention {
    margin-top: -10px;
  }
  .modal__content {
    padding: 20px 30px 40px;
  }
  .intro-buying__content .box {
    margin-top: 14px;
  }
  .intro-buying__list li {
    min-height: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .c-header .header-wrap {
    padding: 0 min(20px, 1.0416666667vw);
  }
  .intro-buying__list {
    gap: 15px 2.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .c-header .menu-list {
    display: none;
  }
  .c-header .toggle-btn {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1500px) {
  .c-header .menu-list > li:last-child > a {
    padding-right: 0 min(15px, 0.78125vw);
  }
  .c-header .menu-list > li > a {
    font-size: 16px;
    padding: 0 min(15px, 0.78125vw);
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .footer .footer__inner .footer-info__list {
    margin-top: 25px;
  }
  .home .nav-block .nav-list li > a:hover {
    background: #E3EBEC;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  .home .disclaimer-block .attention__list .js-accordion__link {
    padding: 30px 30px;
  }
  .home .disclaimer-block .attention__list .js-accordion__link::before {
    right: 40px;
  }
  .home .disclaimer-block .attention__list .js-accordion__content {
    padding-bottom: 30px;
    font-size: 1.4rem;
    padding: 0 30px 30px;
  }
  .home .disclaimer-block .attention__list .js-accordion__content__inner {
    padding-top: 30px;
  }
  .intro-buying__list .intro-buying__list {
    max-width: 364px;
    margin: 0 auto;
    padding: 2.083em 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 700px) {
  .c-btn01 {
    display: block;
    text-align: center;
    margin: 20px auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-btn02 .top {
    font-size: 24px;
  }
  .c-btn02 .bottom {
    font-size: 32px;
  }
  .c-btn02 .bottom::before {
    width: 24px;
    height: 24px;
    top: 4px;
  }
  .c-btn02 .bottom::after {
    width: 8px;
    height: 8px;
    border-width: 2px;
    top: 4px;
  }
  .home .btn-block a {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) and (min-width: 550px) {
  .c-btn-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1040px) {
  .check-list li::after {
    top: 4px;
  }
  .home .tab-block .tab .top {
    font-size: 20px;
  }
  .home .tab-block .tab .bottom {
    font-size: 22px;
    margin-top: 10px;
  }
  .home .tab-block .tab .bottom::before {
    right: -40px;
    width: 24px;
    height: 24px;
  }
  .home .tab-block .tab .bottom::after {
    right: -31px;
    width: 8px;
    height: 8px;
    border-width: 2px;
  }
  .floating-button a .line {
    bottom: 24px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1320px) {
  .home .nav-block .nav-list li {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1320px) and (max-width: 1040px) {
  .home .nav-block .nav-list li {
    font-size: 1.4vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 800px) {
  .home .nav-block .nav-list li > a {
    padding: 20px 10px;
  }
  .home .nav-block .nav-list li > a::after {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
}
@media only screen and (max-width: 767px) and (min-width: 500px) {
  .home .tab-block .desc {
    font-size: 12px;
  }
  .home .movie-block .attention {
    font-size: 12px;
  }
  .home .about-block .about-list .desc {
    font-size: 14px;
  }
  .home .about-block .mold-list > li {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1020px) {
  .home .background-block .box-wrap {
    gap: min(20px, 1.9607843137vw);
  }
  .home .background-block .box .tag {
    font-size: 22px;
  }
  .home .background-block .box .ttl {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1020px) and (max-width: 800px) {
  .home .background-block .box-wrap {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .home .about-block .br-pc {
    display: none;
  }
  .home .about-block .about-list > li {
    padding: 50px;
  }
  .home .about-block .about-list > li:nth-child(2) .top-area .desc {
    margin-top: 20px;
  }
  .home .about-block .about-list .top-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 60px;
  }
  .home .about-block .about-list .ttl-area {
    width: 100%;
  }
  .home .about-block .about-list .desc {
    margin-top: 20px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1241px) {
  .home .about-block .about-list .ttl-area {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    padding-right: 72px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 820px) {
  .home .about-block .mold-list {
    display: block;
  }
  .home .about-block .mold-list > li {
    width: 100%;
  }
  .home .about-block .mold-list > li:not(:first-child) {
    margin-top: 20px;
  }
  .home .about-block .mold-list > li::after {
    top: auto;
    width: 95%;
    height: 1px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 850px) {
  .home .ai-block .movie-block .graph-ttl {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  #modal_buying02.intro-buying .intro-buying__content, #modal_buying03.intro-buying .intro-buying__content {
    padding-top: 0;
    padding-bottom: 30px;
  }
  #modal_buying_ai .modal__inner, #modal_buying_uranium .modal__inner {
    width: auto;
    max-width: none;
  }
  #modal_buying_ai .modal__inner .flexBox, #modal_buying_uranium .modal__inner .flexBox {
    position: absolute;
    top: 0;
    left: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 45.5729166667vw;
    min-width: 600px;
    max-width: 750px;
    max-width: 935px;
    max-height: calc(100vh - 60px);
    height: auto;
    padding: 0px;
    margin-right: auto;
    margin-left: auto;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  #modal_buying_ai .modal__inner .flexBox, #modal_buying_uranium .modal__inner .flexBox {
    border-radius: 10px;
  }
  .intro-buying__headline {
    padding: 0 12.5vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
  .floating-button a {
    font-size: 18px;
    width: 140px;
    height: 140px;
  }
  .intro-buying .modal__inner {
    width: 84vw;
    max-width: none;
  }
  .intro-buying__content {
    padding: 6vw;
  }
  .intro-buying__list {
    gap: 4vw;
  }
  .intro-buying__list li a img {
    height: 12.5vw;
    max-height: none;
  }
  .intro-buying__text {
    font-size: 3.75vw;
  }
  .intro-buying__notes {
    font-size: 3.25vw;
  }
}
@media (min-width: 640px) {
  _::-webkit-full-page-media, _:future, :root .home .bill-block .bill-tb .tb-item-ttl {
    padding: 10px 20px;
    line-height: 0.1;
  }
  _::-webkit-full-page-media, _:future, :root .home .bill-block .bill-tb .dot-list li {
    white-space: pre-line;
  }
  _::-webkit-full-page-media, _:future, :root .home .bill-block .bill-tb .dot-list li::after {
    font-size: 10px;
    top: 10px;
  }
}
@media (max-width: 640px) {
  _::-webkit-full-page-media, _:future, :root .home .bill-block .bill-tb .tb-item-ttl {
    padding: 10px 10px;
    line-height: 0.1;
  }
  _::-webkit-full-page-media, _:future, :root .home .bill-block .bill-tb .dot-list li {
    white-space: pre-line;
    padding-left: 10px;
  }
  _::-webkit-full-page-media, _:future, :root .home .bill-block .bill-tb .dot-list li::after {
    font-size: 5px;
    top: 3px;
  }
}
.home .tab-block .movie-none .desc {
  margin-top: 0;
  font-size: 35px;
}
@media (max-width: 640px) {
  .home .tab-block .movie-none .desc {
    font-size: 15px;
  }
}
/*# sourceMappingURL=style.css.map */