@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: 50px;
  color: #002F37;
  margin: 0 auto;
  line-height: 1.5;
}
.c-ttl01.white {
  color: #fff;
  font-size: 50px;
}
.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%;
}
.c-ttl01 .marker {
  padding: 0 10px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.c-ttl01 .marker::before {
  background: #FF5400;
  content: "";
  display: block;
  width: 100%;
  height: 24px;
  position: absolute;
  bottom: 9px;
  left: 0;
  z-index: -1;
}
.c-ttl01 .marker.light::before {
  opacity: 0.4;
}

.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;
}
.graph-ttl .sub-ttl.fz-14 {
  font-size: 14px;
  color: #002F37;
}

.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: 19px 0;
  background: #ff5400;
  border: 1px solid #ff5400;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 46%;
}
.c-btn02 .bottom::after {
  border-color: #ff5400;
}
.c-btn02 .top {
  display: block;
  font-size: 28px;
  line-height: 1.2;
}
.c-btn02 .bottom {
  font-size: 46px;
  line-height: 1.2;
}
.c-btn02 .bottom::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 0;
  right: -42px;
  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: 5px;
  bottom: 0px;
  right: -32px;
  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;
}

.table02 {
  background: #fff;
  width: 100%;
  text-align: center;
  font-size: 18px;
}
.table02 td {
  border: 1px solid #c9c9c9;
  font-weight: bold;
  padding: 9px 16px;
  background: #002F37;
  color: #fff;
}
.table02 td.small {
  width: 40px;
  white-space: nowrap;
  letter-spacing: 0.4em;
}
.table02 td.small .txt {
  -webkit-writing-mode: tb-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: tb-rl;
}
.table02 .bg-green {
  background: #8eb1b2;
  color: #333;
}
.table02 + .attention {
  color: #fff;
  font-size: 12px;
  margin-top: 13px;
}

.graph-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.graph-wrap .img {
  text-align: center;
}

.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;
  gap: 4.84375vw;
}

.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.6;
}
.check-list li + li {
  margin-top: 2px;
}
.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;
}
.check-list.orange li::after {
  background-color: #ff5400;
}
.check-list.max-1000 {
  max-width: 1000px;
  margin: auto;
}
.check-list.mb-50 {
  margin-bottom: 59px;
}
.check-list .white {
  color: #fff;
}

.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 {
  font-size: 14px;
  color: #727272;
  line-height: 1.14285;
}
.noto-txt.maw-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.noto-txt.maw-1260 {
  width: calc(100% + 260px);
  margin-left: -130px;
}
.noto-txt.mt-43 {
  margin-top: 43px;
}
.noto-txt.mt-22 {
  margin-top: 22px;
}
.noto-txt.black {
  color: #3D3935;
}

/* 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 {
  font-weight: normal;
  font-size: 14px;
  margin-top: 20px;
  text-align: left;
  color: #727272;
  line-height: 1.1428571429;
}
.attention.max-815 {
  max-width: 815px;
  margin-left: auto;
  margin-right: auto;
}
.attention.max-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.attention.dark {
  color: #3D3935;
}

.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;
}
@-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 65px;
}
.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: 55px 46px 55px;
  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 {
  color: #002F37;
  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: 126px;
  padding-bottom: 80px;
}
.home .tab-block .tab-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.home .tab-block .tab {
  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-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  background: #d2d3d1;
  width: 50%;
  text-align: center;
  font-weight: bold;
  padding: 17px 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.active .mid::after {
  border-color: #ff5400;
}
.home .tab-block .tab .top {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
}
.home .tab-block .tab .mid {
  font-size: 25px;
  line-height: 1.4;
  position: relative;
}
.home .tab-block .tab .mid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 1px;
  right: -50px;
  margin: auto;
  background: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
}
.home .tab-block .tab .mid::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 .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: 83px;
  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: 92px;
  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 {
  background: #fff;
  border: 3px solid #ff5400;
  padding: min(4.3229166667vw, 83px) min(6.7708333333vw, 130px) min(5.625vw, 108px);
  margin-bottom: 80px;
  position: relative;
}
.home .tab-block .border-box::before {
  border: 3px solid #ff5400;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 14px;
  right: -14px;
  z-index: -1;
}
.home .tab-block .desc {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  margin-top: 45px;
}
.home .tab-block .graph-wrap {
  padding-top: 58.3%;
  height: 0;
  position: relative;
}
.home .tab-block .graph-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home .c-img-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.home .c-img-wrap.mx-1260 {
  margin-left: -130px;
  width: calc(100% + 260px);
}
.home .movie-block {
  padding: 86px 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/bg03.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: 55px 0 10px;
}
.home .movie-block .bg-white {
  background-color: #fff;
  padding: 66px 20px 80px;
  margin-top: 68px;
}
.home .movie-block .content {
  margin: auto;
  max-width: 1000px;
}
.home .movie-block .movie-wrap {
  position: relative;
  padding-top: 79.5%;
  max-width: 801px;
  margin: 47px auto 0;
  background-color: #3D3935;
}
.home .movie-block .movie-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home .movie-block .movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home .movie-block .graph-wrap {
  margin-top: 13px;
}
.home .movie-block .graph-wrap + .check-list {
  margin-top: 64px;
}
.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 .desc .orange {
  color: #FF5400;
}
.home .movie-block .orange {
  color: #FF5400;
}
.home .movie-block .l-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(29px, 1.5104166667vw);
}
.home .movie-block .border-ttl {
  border-bottom: 2px solid #FF5400;
  color: #002F37;
  display: inline-block;
  font-size: 22px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 25px;
}
.home .movie-block .bg-txt {
  background: rgba(142, 177, 178, 0.4);
  border-radius: 12px;
  padding: 20px 12px 12px;
}
.home .movie-block .bg-txt + .bg-txt {
  margin-top: 26px;
}
.home .movie-block .bg-txt .ttl {
  color: #002F37;
  font-size: 22px;
  font-weight: bold;
  margin-top: -35px;
  margin-bottom: 3px;
  padding: 0 10px;
}
.home .movie-block .bg-txt .c-dot-list li {
  color: #002F37;
  font-size: 20px;
  font-weight: 400;
  text-indent: -1em;
  padding-left: 1em;
}
.home .policy-block {
  background: #8EB1B2;
  padding: 80px 0 120px;
  position: relative;
  z-index: 1;
}
.home .policy-block .bg-white {
  margin: 0 auto;
  max-width: 1000px;
  margin: 0 auto;
}
.home .policy-block .ttl-desc {
  margin: 45px 0 49px;
}
.home .policy-block .ttl-desc .str {
  color: #ff0000;
}
.home .policy-block .table-ttl {
  font-size: 24px;
  color: #002F37;
  font-weight: bold;
  text-align: center;
  margin-top: 56px;
}
.home .policy-block .check-list {
  margin-top: 40px;
}
.home .policy-block .check-list.mt-0 {
  margin-top: 0;
}
.home .policy-block .check-list.green li::after {
  background-color: #002F37;
}
.home .policy-block .check-list li {
  color: #fff;
}
.home .policy-block .check-list li .green {
  color: #002F37;
}
.home .policy-block .check-list li::after {
  background-color: #ff5400;
}
.home .policy-block .graph-wrap {
  margin-top: 64px;
}
.home .policy-block .noto-txt {
  margin-top: 12px;
}
.home .policy-block .attention {
  color: #3D3935;
}
.home .policy-block .attention.mt {
  margin-top: -10px;
  margin-left: -40px;
}
.home .policy-block .border-box {
  border: 6px solid #fff;
  border-radius: 20px;
  text-align: center;
  padding: 19px 0 0;
}
.home .policy-block .desc {
  font-weight: bold;
  color: #002F37;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}
.home .policy-block .desc.white {
  color: #fff;
}
.home .policy-block .desc .green {
  color: #002F37;
}
.home .policy-block .c-ttl01.mb {
  margin-bottom: 30px;
}
.home .policy-block .graph-ttl.mb-10 {
  margin-bottom: 10px;
}
.home .policy-block .orange {
  color: #FF5400;
}
.home .environment-block {
  padding: 86px 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 .content {
  max-width: 1000px;
  margin: auto;
}
.home .environment-block .content.mx-1190 {
  max-width: 1190px;
}
.home .environment-block .bg-white {
  background: #fff;
  padding: 73px 20px 85px 20px;
  margin-top: 67px;
}
.home .environment-block .graph-ttl {
  margin-bottom: 0;
}
.home .environment-block img {
  display: block;
  margin: auto;
}
.home .environment-block img + .graph-ttl {
  margin-top: 60px;
}
.home .environment-block img.img02 {
  margin-top: -30px;
}
.home .environment-block .noto-txt {
  max-width: 1000px;
  margin: 40px auto 0;
}
.home .environment-block .noto-txt + .graph-ttl {
  margin-top: 60px;
}
.home .environment-block .check-list.mb {
  margin-bottom: 64px;
}
.home .environment-block .check-list.mb-30 {
  margin-bottom: 30px;
}
.home .environment-block .check-list li + li {
  margin-top: 8px;
}
.home .environment-block .orange {
  color: #FF5400;
}
.home .environment-block .graph-wrap.mx-1190 {
  max-width: 1190px;
}
.home .environment-block .graph-wrap + .graph-wrap {
  margin-top: 64px;
}
.home .environment-block .img-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 98px;
  margin-bottom: 30px;
}
.home .sector-block {
  padding: 86px 0 120px;
}
.home .sector-block.bg-gray {
  background: #F4F4F4;
}
.home .sector-block .check-list {
  margin: 0 auto 0;
  max-width: 1010px;
}
.home .sector-block .check-list.mt-0 {
  margin-top: 0;
}
.home .sector-block .check-list li {
  color: #002F37;
}
.home .sector-block .check-list li .txt-green {
  color: #002F37;
}
.home .sector-block .check-list li .orange {
  color: #FF5400;
}
.home .sector-block .check-list li + li {
  margin-top: 8px;
}
.home .sector-block .bg-white {
  background: #fff;
  padding: 76px 20px 80px 20px;
  margin-top: 67px;
}
.home .sector-block .graph-wrap {
  margin-top: 61px;
}
.home .sector-block .noto-txt {
  max-width: 950px;
  margin: 0 auto;
  color: #727272;
}
.home .sector-block .img-content {
  margin-top: 50px;
}
.home .sector-block .img-box h3 {
  font-size: 24px;
  color: #3D3935;
  font-weight: bold;
  text-align: center;
}
.home .sector-block .img-box .img01 {
  margin-top: 30px;
}
.home .sector-block .img-box .img02 {
  display: block;
  margin: auto;
  margin-top: 50px;
}
.home .sector-block .c-txt01 {
  color: #fff;
}
.home .sector-block .desc {
  font-weight: bold;
  color: #002F37;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
}
.home .sector-block .desc .orange {
  color: #FF5400;
}
.home .btn-block {
  padding: 96px 0;
  background-color: #E5E6E5;
}
.home .btn-block .inner-block {
  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;
  gap: 0 60px;
}
.home .btn-block a {
  background-color: #ff5400;
  color: #fff;
  padding: 19px 20px 16px;
  width: 100%;
  text-align: center;
  border: 1px solid #ff5400;
  border-radius: 50px;
  font-size: 30px;
}
.home .performance-block {
  background-color: #F4F4F4;
  padding: 88px 0 120px;
}
.home .performance-block .content {
  max-width: 1000px;
  margin: auto;
}
.home .performance-block .graph-wrap {
  margin: 35px auto 0;
}
.home .performance-block .graph-wrap .img + .img {
  margin-top: 32px;
}
.home .performance-block .graph-wrap .img.maw-1260 {
  width: calc(100% + 260px);
  margin-left: -130px;
}
.home .performance-block .graph-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
.home .performance-block .graph-box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 50%;
}
.home .performance-block .graph-attention {
  margin-top: 51px;
  font-size: 16px;
  text-align: left;
  font-weight: normal;
  color: #606060;
}
.home .performance-block .graph-content {
  max-width: 940px;
  background: #fff;
  margin: 0 auto;
  padding: 20px 0;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
}
.home .performance-block .graph-content img {
  display: block;
  margin: 0 auto;
  padding: 0 20px;
}
.home .performance-block .space {
  padding-top: 90px;
}
.home .performance-block .lead {
  max-width: 1000px;
  margin: 40px auto 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.home .performance-block .graph-ttl-box {
  background: #8EB1B2;
  color: #fff;
  font-weight: bold;
  font-size: 46px;
  text-align: center;
  margin: 0 auto;
  -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
}
.home .performance-block .graph-ttl-box .small {
  font-size: 40px;
}
.home .performance-block .btn-list {
  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;
  gap: 20px;
}
.home .performance-block .c-ttl01.mb {
  margin-bottom: 50px;
}
.home .performance-block .performance-tb {
  width: 100%;
}
.home .performance-block .performance-tb tr:nth-child(odd) td {
  background: #fff;
}
.home .performance-block .performance-tb th {
  background: #002F37;
  color: #fff;
  text-align: center;
  padding: 5px 0;
}
.home .performance-block .performance-tb td {
  padding: 3px 0;
  background: #cbcdce;
}
.home .performance-block .performance-tb td.rate {
  text-align: right;
  padding-right: 10px;
}
.home .performance-block .orange {
  color: #FF5400;
}
.home .performance-block .check-list li + li {
  margin-top: 0;
}
.home .performance-block img, .home .performance-block source {
  width: 100%;
}
.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 {
  margin-bottom: 50px;
}
.home .about-block .about-list > li:nth-child(2) .top-area .desc {
  margin-top: 6px;
}
.home .about-block .about-list > li:nth-child(2) .graph-ttl {
  margin-bottom: 12px;
}
.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;
}
.home .about-block .about-list .desc p {
  color: #002F37;
  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: 19px 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 > li:last-child .icon {
  margin-bottom: 45px;
}
.home .about-block .mold-list > li:last-child .icon img {
  min-height: 85px;
}
.home .about-block .mold-list .ttl {
  font-weight: bold;
  margin-bottom: 5px;
}
.home .about-block .mold-list .icon {
  margin: 17px 0 30px;
}
.home .about-block .mold-list .icon img {
  min-height: 100px;
}
.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;
}

#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;
}

.triangle-right {
  position: relative;
  overflow: hidden;
}
.triangle-right::before {
  content: "";
  width: 100%;
  height: calc(100% - 80px);
  background-color: rgba(229, 230, 229, 0.5);
  position: absolute;
  top: 0px;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
  z-index: 2;
}
.triangle-right::after {
  content: "";
  width: calc(100% - 96px);
  height: 604px;
  background-color: rgba(229, 230, 229, 0.5);
  position: absolute;
  bottom: 0px;
  right: 0;
  -webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
  z-index: 1;
}
.triangle-right .inner-block {
  position: relative;
  z-index: 2;
}
.triangle-right.bg-gray {
  background: #F4F4F4;
}
.triangle-right.bg-green {
  background: #8EB1B2;
}
.triangle-right.bg-green::before {
  background-color: rgba(0, 47, 55, 0.1);
}
.triangle-right.bg-green::after {
  background-color: rgba(0, 47, 55, 0.1);
}

.triangle-left {
  position: relative;
  overflow: hidden;
}
.triangle-left::before {
  content: "";
  width: 100%;
  height: calc(100% - 80px);
  background-color: rgba(210, 211, 209, 0.3);
  position: absolute;
  bottom: 0px;
  left: 0;
  -webkit-transform: rotate(180deg) scale(-1, -1);
          transform: rotate(180deg) scale(-1, -1);
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
  z-index: 2;
}
.triangle-left::after {
  content: "";
  width: calc(100% - 96px);
  height: 604px;
  background-color: rgba(229, 230, 229, 0.5);
  position: absolute;
  top: 0px;
  left: 0;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  -webkit-clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
  z-index: 1;
}
.triangle-left .inner-block {
  position: relative;
  z-index: 2;
}

.bg-gray {
  background-color: #F4F4F4;
}

/* .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: 4vw;
  bottom: 7em;
  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;
  padding-bottom: 10px;
  max-width: 16.3636363636vw;
  height: 180px;
  max-height: 16.3636363636vw;
  font-size: 25px;
  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;
}

#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;
}
.intro-buying__headline .text {
  line-height: 1.3;
}
.intro-buying__headline span.label {
  display: block;
  background-color: #fff;
  border-radius: 200px;
  color: #ff5400;
  font-size: 22px;
  padding: 3px 24px 1px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px 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: 180px;
  height: 180px;
}
.floating-button a .line {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 40px;
  margin: auto;
  background: #fff;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.floating-button a .line::after {
  content: "";
  border-top: 3px solid #ff5400;
  border-right: 3px solid #ff5400;
  position: absolute;
  background: transparent;
  border-left-color: transparent;
  right: 0;
  left: 0;
  bottom: 10px;
  margin: auto;
  width: 12px;
  height: 12px;
  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: 18px;
    padding-right: 18px;
  }
  .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;
  }
  .c-ttl01 .marker::before {
    height: 7px;
    bottom: 5px;
  }
  .c-ttl01 .marker {
    padding: 0 1px;
  }
  .graph-ttl {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.2;
  }
  .graph-ttl .sub-ttl.fz-14 {
    font-size: 8px;
  }
  .graph-ttl .sub-ttl {
    font-size: 10px;
  }
  .c-btn01 {
    font-size: 12px;
    padding: 11px 0;
  }
  .c-btn02 {
    position: relative;
    padding: 13px 0;
    border-radius: 8px;
    min-height: 69px;
    width: 100%;
  }
  .c-btn02 .top {
    font-size: 12px;
  }
  .c-btn02 .bottom {
    font-size: 22px;
    display: block;
  }
  .c-btn02 .bottom::before {
    bottom: 0;
    top: 0;
    margin: auto;
    right: 19px;
    width: 25px;
    height: 25px;
  }
  .c-btn02 .bottom::after {
    bottom: 0;
    top: 0;
    margin: auto;
    right: 28px;
  }
  .table02 {
    font-size: 10px;
  }
  .table02 td {
    padding: 2px 0;
  }
  .table02 td.small {
    width: 25px;
  }
  .table02 + .attention {
    font-size: 10px;
    margin-top: 9px;
  }
  .graph-wrap .img.max-300 {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 15px);
  }
  .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.max-300 {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 30px);
  }
  .check-list li {
    font-size: 12px;
    padding-left: 19px;
    line-height: 1.4;
  }
  .check-list li + li {
    margin-top: 7px;
  }
  .check-list li::after {
    width: 13px;
    height: 13px;
    top: 1px;
  }
  .check-list.mb-50 {
    margin-bottom: 21px;
  }
  .noto-txt.maw-1000 {
    max-width: calc(100% - 40px);
  }
  .noto-txt.mt-43 {
    margin-top: 22px;
  }
  .noto-txt.mt-22 {
    margin-top: 20px;
  }
  .noto-txt {
    font-size: 10px;
    line-height: 1.3;
  }
  .js-scrollable .scroll-hint-icon {
    width: 101px;
    height: 50px;
    top: calc(62% - 25px);
  }
  .ttl-desc {
    font-size: 12px;
  }
  .attention {
    font-weight: normal !important;
    font-size: 10px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 15px);
  }
  .attention.max-300 {
    max-width: calc(100% - 31px);
  }
  .home {
    margin-top: 50px;
  }
  .home .fv-block {
    height: 101vw;
  }
  .home .point-block {
    padding: 38px 0 14px;
  }
  .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: 79px;
  }
  .home .point-block .point-list li {
    width: 100%;
    padding: 31px 12px 30px;
  }
  .home .point-block .point-list .ttl {
    font-size: 18px;
    padding: 0;
    width: 100px;
    height: 25px;
    top: -37px;
  }
  .home .point-block .point-list .txt {
    font-size: 14px;
  }
  .home .point-block .num {
    font-size: 33px;
  }
  .home .tab-block {
    padding-top: 40px;
    padding-bottom: 38px;
  }
  .home .tab-block .tab {
    padding: 12px 0 14px;
  }
  .home .tab-block .tab.active .bottom::after {
    border-color: #fff;
  }
  .home .tab-block .tab.active .mid::after {
    border-color: #fff;
  }
  .home .tab-block .tab .top {
    font-size: 10px;
    margin-bottom: -3px;
  }
  .home .tab-block .tab .mid {
    font-size: 10px;
    line-height: 1.2;
  }
  .home .tab-block .tab .mid::before {
    display: none;
  }
  .home .tab-block .tab .mid::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: -20px;
  }
  .home .tab-block .tab .bottom {
    font-size: 12px;
    padding-top: 2px;
  }
  .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: -13px;
  }
  .home .tab-block .border-box::before {
    height: calc(100% + 5px);
    border-width: 2px;
    top: 2px;
    right: -7px;
  }
  .home .tab-block .border-box {
    border-width: 2px;
    padding: 5.6vw 9.6vw 9.0666666667vw;
    margin-bottom: 22px;
  }
  .home .tab-block .desc {
    margin-top: 15px;
    font-size: 10px;
    margin-left: -13px;
    width: calc(100% + 25px);
    line-height: 1.38;
  }
  .home .tab-block .graph-wrap {
    padding-top: 59%;
    width: 100%;
    margin: 0 auto;
  }
  .home .c-img-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 25px;
  }
  .home .movie-block {
    padding: 29px 0 40px;
  }
  .home .movie-block::before {
    background: url("../img/bg03_sp.jpg.webp") center/cover;
  }
  .home .movie-block .graph-ttl {
    margin: 21px 0 0;
  }
  .home .movie-block .bg-white {
    padding: 33px 10px 42px;
    margin-top: 22px;
  }
  .home .movie-block .movie-wrap {
    padding-top: 56%;
    margin: 22px auto 0;
  }
  .home .movie-block .movie-wrap img {
    height: auto;
  }
  .home .movie-block .graph-wrap {
    margin-top: 3px;
  }
  .home .movie-block .graph-wrap .max-1090 {
    max-width: calc(100% + 31px);
    margin-right: -13px;
    margin-top: 19px;
  }
  .home .movie-block .graph-wrap + .graph-wrap {
    margin-top: 20px;
  }
  .home .movie-block .graph-wrap + .check-list {
    margin-top: 30px;
  }
  .home .movie-block .noto-txt {
    margin-top: 4px;
    font-size: 10px;
    margin-left: 12px;
    margin-right: 12px;
  }
  .home .movie-block .attention {
    font-weight: bold;
    color: #727272;
    font-size: 10px;
    margin-top: 7px;
  }
  .home .movie-block .desc {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 15px);
  }
  .home .movie-block .l-flex {
    gap: min(17px, 4.5333333333vw);
  }
  .home .movie-block .border-ttl {
    font-size: 12px;
    margin-top: 7px;
    margin-bottom: 18px;
    margin-left: 19px;
  }
  .home .movie-block .bg-txt {
    border-radius: 8px;
    padding: 9px;
    width: calc(100% - 33px);
    margin: auto;
  }
  .home .movie-block .bg-txt + .bg-txt {
    margin-top: 20px;
  }
  .home .movie-block .bg-txt .ttl {
    font-size: 12px;
    margin-top: -18px;
    margin-bottom: 0;
    padding: 0 3px;
  }
  .home .movie-block .bg-txt .c-dot-list li {
    font-size: 10px;
  }
  .home .policy-block {
    padding: 26px 0 41px;
  }
  .home .policy-block .inner-block {
    padding: 0 17px;
  }
  .home .policy-block .ttl-desc {
    margin: 17px 0 41px;
  }
  .home .policy-block .table-ttl {
    margin-top: 30px;
    font-size: 10px;
  }
  .home .policy-block .check-list {
    margin-top: 18px;
  }
  .home .policy-block .graph-wrap {
    margin-top: 20px;
  }
  .home .policy-block .graph-wrap + .graph-wrap {
    margin-top: 5px;
  }
  .home .policy-block .graph-wrap .img.max-300 {
    width: calc(100% - 40px);
  }
  .home .policy-block .graph-wrap + .graph-wrap.mt-20 {
    margin-top: 20px;
  }
  .home .policy-block .attention.mt {
    margin-top: 5px;
    margin-left: 0;
  }
  .home .policy-block .border-box {
    border-width: 2px;
    border-radius: 20px;
    padding: 10px 10px 0;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 10px);
  }
  .home .policy-block .desc {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .home .policy-block .desc.max-300 {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 33px);
  }
  .home .policy-block .c-ttl01.mb {
    margin-bottom: 15px;
  }
  .home .policy-block .graph-ttl.mb-10 {
    margin-bottom: 2px;
  }
  .home .environment-block {
    padding: 30px 0 40px;
  }
  .home .environment-block::before {
    background: url("../img/bg02_sp.jpg.webp") no-repeat center/cover;
  }
  .home .environment-block .bg-white {
    padding: 33px 17px 44px;
    margin-top: 25px;
  }
  .home .environment-block img.img02 {
    margin-top: 10px;
  }
  .home .environment-block .noto-txt {
    margin: 10px auto 0;
  }
  .home .environment-block .noto-txt + .graph-ttl {
    margin-top: 30px;
  }
  .home .environment-block .check-list.mb {
    margin-bottom: 15px;
  }
  .home .environment-block .check-list.mb-30 {
    margin-bottom: 15px;
  }
  .home .environment-block .check-list li + li {
    margin-top: 5px;
  }
  .home .environment-block .graph-wrap + .graph-wrap {
    margin-top: 37px;
  }
  .home .environment-block .center {
    position: relative;
    right: -10px;
  }
  .home .environment-block .img-wrap {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 5px;
  }
  .home .sector-block {
    padding: 27px 0 40px;
  }
  .home .sector-block .inner-block {
    padding: 0 18px;
  }
  .home .sector-block .check-list.max-300 {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 30px);
    margin-top: 26px;
  }
  .home .sector-block .check-list {
    margin-top: 9px;
  }
  .home .sector-block .bg-white {
    padding: 24px 15px 40px;
    margin-top: 19px;
  }
  .home .sector-block .bg-white.pd-43 {
    margin-top: 23px;
  }
  .home .sector-block .graph-wrap .img.max-1040 {
    margin-left: -5px;
    width: calc(100% + 10px);
  }
  .home .sector-block .graph-wrap .img.max-1194 {
    margin-left: 13px;
    margin-top: 10px;
    width: calc(100% + 5px);
  }
  .home .sector-block .graph-wrap .img.mt-10 {
    margin-top: 6px;
  }
  .home .sector-block .graph-wrap.mt-20 {
    margin-top: 21px;
  }
  .home .sector-block .graph-wrap {
    margin-top: 16px;
  }
  .home .sector-block .graph-wrap.mt-20 {
    margin-top: 20px;
  }
  .home .sector-block .noto-txt {
    margin-top: 10px;
  }
  .home .sector-block .img-content {
    margin-top: 20px;
  }
  .home .sector-block .img-box h3 {
    font-size: 10px;
  }
  .home .sector-block .img-box .img01 {
    margin-top: 10px;
  }
  .home .sector-block .img-box .img02 {
    margin-top: 10px;
  }
  .home .sector-block .desc {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .home .sector-block .desc.left {
    text-align: left;
  }
  .home .sector-block .max-1005 {
    line-height: 1.35;
  }
  .home .btn-block {
    padding: 21px 0 22px;
  }
  .home .btn-block .inner-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-template-columns: 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: 36px 0 46px;
  }
  .home .performance-block.performance-block02 {
    padding: 29px 0 46px;
  }
  .home .performance-block.performance-block02 .c-ttl01.mb {
    margin-bottom: 17px;
  }
  .home .performance-block .graph-wrap {
    padding: 0;
    margin-top: 27px;
  }
  .home .performance-block .graph-wrap .img + .img {
    margin-top: 20px;
  }
  .home .performance-block .graph-wrap .img.max-300 {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 30px);
  }
  .home .performance-block .graph-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .performance-block .graph-box {
    width: 100%;
  }
  .home .performance-block .graph-attention {
    font-size: 10px;
    margin-top: 20px;
  }
  .home .performance-block .space {
    padding-top: 40px;
  }
  .home .performance-block .lead {
    font-size: 10px;
    margin-top: 20px;
  }
  .home .performance-block .graph-ttl-box {
    font-size: 18px;
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
  }
  .home .performance-block .graph-ttl-box .small {
    font-size: 14px;
  }
  .home .performance-block .btn-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home .performance-block .c-ttl01.mb {
    margin-bottom: 23px;
  }
  .home .performance-block .performance-tb {
    white-space: nowrap;
  }
  .home .performance-block .check-list li + li {
    margin-top: 12px;
  }
  .home .performance-block .check-list.sp-white li {
    color: #fff;
  }
  .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 36px;
  }
  .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;
  }
  .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-wrap .max-1075 {
    margin-left: -10px;
    margin-top: 16px;
    width: calc(100% + 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: 20px;
    margin-left: -5px;
    width: calc(100% + 10px);
  }
  .home .about-block .mold-list {
    position: relative;
    display: block;
    margin-top: -13px;
  }
  .home .about-block .mold-list > li {
    padding: 0px;
    position: static;
    display: grid;
    grid-template-columns: 70px auto;
    grid-template-rows: auto auto;
    width: 100%;
    text-align: left;
    font-size: 10px;
    gap: 0px 11px;
  }
  .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 > li:last-child .icon {
    margin-top: 20px;
    width: 42px;
    margin-bottom: 0;
  }
  .home .about-block .mold-list > li:last-child .icon img {
    min-height: 43px;
  }
  .home .about-block .mold-list .ttl {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 0;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .home .about-block .mold-list .icon img {
    min-height: 53px;
  }
  .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 auto 12px;
    width: 53px;
  }
  .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;
  }
  #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;
  }
  .triangle-right::before {
    height: calc(100% - 30px);
  }
  .triangle-right::after {
    width: calc(100% - 19px);
  }
  .triangle-left::before {
    height: calc(100% - 26px);
  }
  .triangle-left::after {
    height: 268px;
  }
  .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 .text {
    padding-top: 4px;
  }
  .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 {
    padding: 2px;
    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);
  }
  .intro-buying__list li a.daiwa01 {
    padding: 0;
  }
  .intro-buying__list li a img {
    max-height: 41px;
    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 {
    border-top: 2px solid #ff5400;
    border-right: 2px solid #ff5400;
    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-ttl01 .marker.pr-0 {
    padding-right: 0;
  }
  .c-ttl01 .marker.pl-0 {
    padding-left: 0;
  }
  .c-btn01:hover {
    background: #fff;
    color: #ff5400;
  }
  .c-btn02 {
    min-height: 162px;
  }
  .c-btn02:hover {
    opacity: 0.75;
  }
  .c-btn02 .bottom {
    position: relative;
    margin-top: 5px;
  }
  .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 .tab-block .desc.mx {
    margin: 45px auto 0;
    width: calc(100% - 0.0520833333vw);
  }
  .home .tab-block .desc.mx + .mx {
    margin: 25px auto 0;
  }
  .home .movie-block .graph-wrap .max-1090 {
    max-width: 1090px;
    margin-left: -45px;
  }
  .home .policy-block .graph-wrap.mt-30 {
    margin-top: 30px;
  }
  .home .policy-block .attention.mw-850 {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
  .home .sector-block .graph-wrap .img.max-1040 {
    margin-left: -40px;
    width: calc(100% + 40px);
  }
  .home .sector-block .graph-wrap .img.max-1194 {
    width: calc(100% + 194px);
  }
  .home .sector-block .noto-txt {
    margin-top: -29px;
  }
  .home .sector-block .img-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .home .sector-block .max-1005 {
    width: calc(100% + 26px);
  }
  .home .sector-block .max-1090 {
    margin-left: -45px;
    width: calc(100% + 90px);
  }
  .home .btn-block a {
    max-width: 380px;
  }
  .home .btn-block a:hover {
    color: #ff5400;
    background-color: #fff;
  }
  .home .performance-block .graph-wrap .img.maw-1000 {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .home .about-block .about-list .graph-wrap .max-1075 {
    margin-left: -37px;
    width: calc(100% + 75px);
  }
  .home .about-block .mold-list .txt {
    margin-bottom: 33px;
  }
  .home .disclaimer-block .attention__list .js-accordion__link:hover {
    color: #002F37;
  }
  .modal__content {
    padding: 20px 30px 40px;
  }
  #modal_buying_ai .modal__inner section, #modal_buying_uranium .modal__inner section {
    padding-top: 20px;
  }
  .intro-buying__content .box {
    margin-top: 14px;
  }
  .intro-buying__list li {
    min-height: 60px;
  }
  .intro-buying__notes {
    font-size: 16px;
    margin-top: 5px;
  }
}
@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;
  }
  .table02 {
    font-size: 16px;
  }
}
@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 .tab-block .tab .mid {
    font-size: 20px;
  }
  .home .btn-block a {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 800px) {
  .table02 td {
    font-size: 14px;
  }
}
@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 .mid::before {
    right: -45px;
    width: 24px;
    height: 24px;
  }
  .home .tab-block .tab .mid::after {
    right: -36px;
    width: 8px;
    height: 8px;
    border-width: 2px;
  }
  .home .tab-block .tab .bottom {
    font-size: 22px;
    margin-top: 10px;
  }
  .home .tab-block .tab .bottom::before {
    right: 50px;
    width: 24px;
    height: 24px;
  }
  .home .tab-block .tab .bottom::after {
    right: 58px;
    width: 8px;
    height: 8px;
    border-width: 2px;
  }
  .floating-button a .line {
    bottom: 24px;
  }
}
@media only screen and (max-width: 1300px) {
  .noto-txt.maw-1260 {
    width: 100%;
    margin-left: 0;
  }
  .home .performance-block .graph-wrap .img.maw-1260 {
    width: 100%;
    margin-left: 0;
  }
}
@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 (max-width: 1290px) {
  .home .c-img-wrap.mx-1260 {
    width: auto;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1440px) {
  .home .sector-block .graph-wrap .img.max-1194 {
    width: calc(100% + 80px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1440px) and (max-width: 1200px) {
  .home .sector-block .graph-wrap .img.max-1194 {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1230px) {
  .home .sector-block .max-1090 {
    margin-left: auto;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1030px) {
  .home .performance-block .graph-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .performance-block .graph-box {
    width: 100%;
  }
}
@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: 59px;
  }
}
@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 (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;
  }
}
/*# sourceMappingURL=style.css.map */