@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: 40px;
  color: #002F37;
  margin: 0 auto;
  line-height: 1.2857142857;
}
.c-ttl01.white {
  color: #fff;
  font-size: 40px;
}
.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.left {
  text-align: left;
}
.c-ttl01.mb {
  margin-bottom: 36px;
}
.c-ttl01.mt {
  margin-top: 70px;
}
.c-ttl01 + .c-txt01 {
  margin-top: 10px;
}
.c-ttl01.active .line {
  background-size: 100%;
}
.c-ttl01 .small {
  font-size: 32px;
}
.c-ttl01.bg {
  background: #002F37;
  color: #fff;
  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-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;
  padding: 15px 10px 10px;
  min-height: 120px;
}
.c-ttl01.bg.gray {
  background: #D9D9D9;
}
.c-ttl01.bg.green {
  background: #D9E6E6;
}
.c-ttl01.bg.mb {
  margin-bottom: 40px;
}
.c-ttl01.bg.mb-50 {
  margin-bottom: 50px;
}
.c-ttl01.bg + .bg-white {
  margin-top: 0;
}

.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;
  position: relative;
}
.c-btn01::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 11px solid #ffffff;
  border-right: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
}

.c-btn02 {
  border-radius: 100px;
  -webkit-box-shadow: 0 8px 0 0 #8E3A11;
          box-shadow: 0 8px 0 0 #8E3A11;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 27px 0 23px;
  background: #ff5400;
  border: 2px solid #fff;
  display: block;
  max-width: 450px;
  margin: auto;
  text-align: center;
  position: relative;
}
.c-btn02::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 34px;
  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::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0px;
  right: 45px;
  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;
}
.c-btn02 .top {
  font-size: 22px;
}
.c-btn02 .bottom::after {
  border-color: #ff5400;
}
.c-btn02 .bottom {
  display: block;
  position: relative;
  font-size: 40px;
  line-height: 1.2;
  width: 100%;
}

.c-btn03 {
  background: #fff;
  border: 4px solid #FF5400;
  border-radius: 20px;
  color: #FF5400;
  display: block;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding: 15px 15px 14px;
  position: relative;
  margin-top: 8px;
  width: 100%;
}
.c-btn03::before {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 12px 0 12px 13px;
  border-color: transparent transparent transparent #FF5400;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 74px;
  margin: auto;
  height: 13px;
  width: 26px;
}

/* -----------------------------------------------
* 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: 32px;
  color: #002F37;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
}
.check-list li + li {
  margin-top: 8px;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  -webkit-mask: url(../img/check.svg) no-repeat center/contain;
          mask: url(../img/check.svg) no-repeat center/contain;
  width: 27px;
  height: 20px;
  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;
}

.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;
}

.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: 80px;
  padding-bottom: 80px;
}
.home .tab-block .inner-block {
  max-width: 1080px;
}
.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: 80px 64px 80px;
  position: relative;
}
.home .tab-block .desc {
  color: #002F37;
  font-weight: bold;
  font-size: 28px;
  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-btn-section {
  background: #E5E6E5;
}
.home .c-btn-section.bg-green {
  background: #002F37;
}
.home .c-btn-section .inner-block {
  padding-top: 40px;
  padding-bottom: 42px;
}
.home .c-btn-section .btn-ttl {
  text-align: center;
  color: #002F37;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
}
.home .c-btn-section .btn-ttl.white {
  color: #fff;
}
.home .c-btn-section .btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 102px;
  -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;
  max-width: 1000px;
  margin: auto;
}
.home .c-btn-section .btn-wrap .c-btn02 {
  width: 100%;
}
.home .movie-block {
  padding: 80px 0 80px;
  position: relative;
  z-index: 1;
}
.home .movie-block .inner-block {
  max-width: 1080px;
}
.home .movie-block .graph-ttl {
  margin: 55px 0 10px;
}
.home .movie-block .bg-white {
  background-color: #fff;
  padding: 0;
  margin-top: 24px;
}
.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: 56px;
}
.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 .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: 80px 0 80px;
  position: relative;
  z-index: 1;
}
.home .environment-block .inner-block {
  max-width: 1080px;
}
.home .environment-block .content {
  max-width: 1000px;
  margin: auto;
}
.home .environment-block .content.mx-1190 {
  max-width: 1190px;
}
.home .environment-block .content + .content {
  margin-top: 72px;
}
.home .environment-block .bg-white {
  background: #fff;
  margin-top: 24px;
}
.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: 80px 0 80px;
}
.home .sector-block.bg-gray {
  background: #F4F4F4;
}
.home .sector-block .inner-block {
  max-width: 1080px;
}
.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;
  margin: 24px auto 0;
  max-width: 1000px;
}
.home .sector-block .graph-wrap {
  margin-top: 56px;
}
.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 .sector-block .movie-wrap {
  margin-top: 124px;
}
.home .sector-block .movie-wrap .ttl {
  color: #002F37;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
  text-align: center;
}
.home .sector-block .movie-wrap .l-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 92px;
}
.home .sector-block .movie-wrap .movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.home .sector-block .movie-wrap .movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.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 .c-btn01 {
  background-color: #ff5400;
  color: #fff;
  padding: 19px 20px 16px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -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;
  text-align: center;
  border: 1px solid #ff5400;
  border-radius: 50px;
  font-size: 30px;
}
.home .performance-block {
  background-color: #F4F4F4;
  padding: 80px 0 80px;
}
.home .performance-block.bg-white {
  background: #fff;
}
.home .performance-block .inner-block {
  max-width: 1080px;
}
.home .performance-block .content {
  max-width: 1000px;
  margin: auto;
}
.home .performance-block .graph-wrap {
  margin: 56px auto 0;
}
.home .performance-block .graph-wrap.mt-63 {
  margin-top: 63px;
}
.home .performance-block .graph-wrap .img + .img {
  margin-top: 32px;
}
.home .performance-block .graph-wrap .img.maw-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.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: 37px;
}
.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 img, .home .performance-block source {
  width: 100%;
}
.home .performance-block .l-btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 103px;
  margin-top: 70px;
}
.home .performance-block .l-btn-wrap .ttl {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #002F37;
  font-size: 35px;
  font-weight: bold;
  line-height: 1.2;
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 30px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 32px 25px;
}
.home .performance-block .l-btn-wrap .ttl.en {
  background: #A7C1C1;
}
.home .performance-block .l-btn-wrap .ttl.ja {
  background: #FFD1CB;
}
.home .about-block {
  padding: 78px 0 114px;
  position: relative;
  z-index: 1;
}
.home .about-block .inner-block {
  max-width: 1280px;
}
.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: 69px 0 0;
}
.home .about-block .about-list > li {
  background: #fff;
  padding: 78px 100px 77px;
}
.home .about-block .about-list > li:not(:first-child) {
  margin-top: 82px;
}
.home .about-block .about-list > li:nth-child(2) .graph-ttl {
  margin-bottom: 12px;
}
.home .about-block .about-list .top-area {
  display: block;
  margin-bottom: 28px;
  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-wrap {
  color: #ff5400;
  font-size: 28px;
  font-weight: bold;
  border-bottom: 6px solid #ff5400;
  white-space: nowrap;
}
.home .about-block .about-list .ttl-area .num {
  border-bottom: 6px solid #ff5400;
  color: #ff5400;
  position: relative;
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  padding-bottom: 10px;
}
.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 .num .inn {
  font-size: 28px;
}
.home .about-block .about-list .ttl-area .ttl {
  font-size: 28px;
  font-weight: bold;
  margin-left: 33px;
  letter-spacing: 0.03em;
  color: #002F37;
}
.home .about-block .about-list .desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 40px;
}
.home .about-block .about-list .desc .point {
  font-weight: 400;
  font-size: 15px;
  display: inline-block;
}
.home .about-block .about-list .desc p {
  color: #002F37;
  line-height: 1.6;
}
.home .about-block .about-list .desc .small {
  font-size: 15px;
}
.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.mt-0 {
  margin-top: 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: 28px;
  margin: 0 auto 35px;
  position: relative;
  color: #002F37;
  text-align: center;
  letter-spacing: 0.15em;
}
.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 .about-list .txt-or {
  color: #ff5400;
}
.home .about-block .mold-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin: 0px auto;
  width: 100%;
  color: #002F37;
}
.home .about-block .mold-list > li {
  border: 3px solid #ff5400;
  border-radius: 10px;
  position: relative;
  text-align: center;
  padding: 17px 0px;
}
.home .about-block .mold-list > li:nth-child(2) .icon img {
  min-height: 80px;
}
.home .about-block .mold-list > li:last-child::after {
  display: none;
}
.home .about-block .mold-list > li:last-child .icon img {
  min-height: 85px;
}
.home .about-block .mold-list .ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
}
.home .about-block .mold-list .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -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;
  margin: 0 0 16px;
}
.home .about-block .mold-list .icon img {
  min-height: 100px;
}
.home .about-block .mold-list .txt {
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.home .about-block .list-attention {
  margin-top: 20px;
  font-size: 14px;
}
.home .disclaimer-block {
  background: #f4f4f4;
  padding-top: 100px;
  padding-bottom: 6.77em;
}
.home .disclaimer-block .attention__list {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
}
.home .disclaimer-block .attention__list .list-item {
  overflow: hidden;
}
.home .disclaimer-block .attention__list .list-item.open .js-accordion__link::before {
  top: 45%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.home .disclaimer-block .attention__list .js-accordion__link {
  font-weight: 700;
  position: relative;
  border: none;
  cursor: pointer;
  background: #fff;
  padding: 15px 15px;
  font-size: 20px;
}
.home .disclaimer-block .attention__list .js-accordion__link::before {
  content: "";
  position: absolute;
  border-top: 2px solid #d4d4d4;
  border-right: 2px solid #d4d4d4;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 10px;
  height: 10px;
  top: 38%;
  right: 30px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.home .disclaimer-block .attention__list .js-accordion__content {
  background-color: #ffffff;
  padding-bottom: 15px;
  font-size: 1.1rem;
  color: #3d3935;
  padding: 0 15px 15px;
  line-height: 1.8;
}
.home .disclaimer-block .attention__list .js-accordion__content__inner {
  position: relative;
  border-top: 1px solid #d1d1d1;
  padding: 1.1em 0 0.5em;
}
.home .disclaimer-block .attention__list .js-accordion__content__inner .semiconductor {
  font-size: 14px;
}
.home .disclaimer-block .attention__list .d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.home .disclaimer-block .attention__list .mt-00 {
  margin-top: 0;
}
.home .disclaimer-block .attention__list .us-tech {
  display: none;
}
.home .intro-section {
  background: #F4F4F4;
  position: relative;
}
.home .intro-section .inner-block {
  padding-top: 110px;
  padding-bottom: 80px;
  max-width: 1080px;
}
.home .intro-section .ico {
  position: absolute;
  top: 45px;
}
.home .intro-section .ico.ico01 {
  left: 40px;
  max-width: 128px;
}
.home .intro-section .ico.ico02 {
  right: 40px;
  max-width: 132px;
}
.home .intro-section .intro-ttl {
  color: #002F37;
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
.home .intro-section .intro-ttl .orange {
  color: #FF5400;
}
.home .intro-section .intro-ttl .small {
  font-size: 28px;
}
.home .l-ttl-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home .l-ttl-wrap .max-388 {
  max-width: 388px;
}
.home .l-ttl-wrap .max-369 {
  max-width: 369px;
}
.home .l-ttl-wrap .max-363 {
  max-width: 363px;
  position: relative;
}
.home .l-ttl-wrap .max-331 {
  max-width: 331px;
}
.home .l-ttl-wrap .txt {
  color: #002F37;
  font-size: 20px;
  font-weight: 400;
}
.home .aco-wrap .aco-ttl {
  background: #D9D9D9;
  color: #002F37;
  cursor: pointer;
  font-size: 40px;
  font-weight: bold;
  padding: 39px 72px;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .aco-wrap .aco-ttl.is-open::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.home .aco-wrap .aco-ttl::before, .home .aco-wrap .aco-ttl::after {
  background: #000;
  content: "";
  height: 4px;
  width: 26px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 47px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .aco-wrap .aco-ttl::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.home .aco-wrap .aco-body {
  padding-top: 27px;
  display: none;
}
.home .faq-wrap {
  margin-top: 72px;
}
.home .faq-wrap .faq {
  background: #fff;
}
.home .faq-wrap .faq + .faq {
  margin-top: 72px;
}
.home .faq-wrap .aco-ttl {
  cursor: pointer;
  background: #fff;
  padding: 40px 100px;
  color: #002F37;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.03em;
  position: relative;
}
.home .faq-wrap .aco-ttl.is-open::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.home .faq-wrap .aco-ttl::before, .home .faq-wrap .aco-ttl::after {
  background: #000;
  content: "";
  height: 4px;
  width: 26px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 47px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .faq-wrap .aco-ttl::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.home .faq-wrap .aco-ttl .inn {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
}
.home .faq-wrap .aco-ttl .inn::before {
  content: "Q";
  color: #FF5400;
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
}
.home .faq-wrap .aco-body {
  display: none;
  padding-top: 32px;
  padding: 0 100px 40px;
}
.home .faq-wrap .aco-body .inn {
  color: #002F37;
  display: block;
  font-size: 20px;
  font-weight: 400;
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}
.home .faq-wrap .aco-body .inn.mb-0 {
  margin-bottom: 0;
}
.home .faq-wrap .aco-body .inn::before {
  content: "A";
  color: #FF5400;
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  top: -5px;
  left: 0;
  line-height: 1;
}
.home .js-aco-wrap {
  position: relative;
  max-width: 380px;
  width: 100%;
  z-index: 10;
}
.home .js-aco-wrap .c-btn01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -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;
  cursor: pointer;
  position: relative;
  z-index: 5;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .js-aco-wrap .c-btn01::before {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .js-aco-wrap .c-btn01.is-open::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.home .js-aco-body {
  display: none;
  background: #fff;
  border-radius: 0 0 20px 20px;
  border: 7px solid #ff5400;
  position: absolute;
  top: 43px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  padding: 64px 10px 28px;
  z-index: 0;
}
.home .js-aco-body a {
  color: #ff5400;
  background: transparent;
  border: none;
  display: block;
  padding: 0;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  padding-right: 3px;
  width: 100% !important;
  text-align: center;
}
.home .js-aco-body a::before {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 11px 0 11px 10px;
  border-color: transparent transparent transparent #FF5400;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 9px;
  margin: auto;
  height: 10px;
  width: 23px;
}
.home .js-aco-body a + a {
  margin-top: 31px;
}

.fixed-btn-wrap {
  position: fixed;
  bottom: 100px;
  right: 13px;
  z-index: 50;
}
.fixed-btn-wrap .btn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  color: #002F37;
  display: grid;
  grid-template-columns: 87px 1fr;
  gap: 16px;
  max-width: 320px;
  line-height: 1.2;
  padding: 22px 16px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
}
.fixed-btn-wrap .btn::before {
  background: #002F37;
  border-radius: 100px;
  content: "";
  height: 18px;
  width: 18px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 16px;
  margin: auto;
}
.fixed-btn-wrap .btn::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 22px;
  bottom: 0;
  margin: auto;
}
.fixed-btn-wrap .btn + .btn {
  margin-top: 8px;
}
.fixed-btn-wrap .btn.en {
  background: #A7C1C1;
  border-color: #A7C1C1;
}
.fixed-btn-wrap .btn.ja {
  background: #FFD1CB;
  border-color: #FFD1CB;
}
.fixed-btn-wrap .btn.ja .img {
  border: 1px solid #FFD1CB;
}
.fixed-btn-wrap .btn .main {
  font-size: 27px;
  font-weight: bold;
}
.fixed-btn-wrap .btn .sub {
  font-size: 20px;
  font-weight: bold;
}

#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 {
  -webkit-box-shadow: 0 6px 0 0 #8E3A11;
          box-shadow: 0 6px 0 0 #8E3A11;
  border: 3px solid #fff;
  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: 177px;
  padding-bottom: 10px;
  max-width: 16.3636363636vw;
  height: 177px;
  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.ja .modal__content {
  background: #FFD1CB;
}

.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 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  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 1.9270833333vw;
}

.intro-buying__list li {
  width: calc((100% - 1.9270833333vw) / 2);
  max-height: 104px;
  height: 4.53125vw;
}
.intro-buying__list li:nth-child(1) img {
  max-width: 9.01vw;
}
.intro-buying__list li:nth-child(2) img {
  max-width: 12.344vw;
}
.intro-buying__list li:nth-child(3) img {
  max-width: 9.427vw;
}
.intro-buying__list li:nth-child(5) img {
  max-width: 7.396vw;
}

.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: 12px 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 {
  padding: 5px 0;
}
.intro-buying__list li a.daiwa01 img {
  padding: 0;
}
.intro-buying__list li a.au {
  padding: 5px 0;
}
.intro-buying__list li a.au img {
  max-height: 61px;
  height: calc(100% - 5px);
}

.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.5208333333vw 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: 177px;
  height: 177px;
}
.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(0deg);
          transform: rotate(0deg);
}
.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: 5px;
  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用調整 */
.ico-img {
  margin-left: auto;
}
.ico-img.max-500 {
  max-width: 500px;
}
.ico-img.max-590 {
  max-width: 500px;
  margin-right: -85px;
}
@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: 15px;
  }
  .c-ttl01.white {
    font-size: 18px;
  }
  .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.mb {
    margin-bottom: 14px;
  }
  .c-ttl01.mt {
    margin-top: 50px;
  }
  .c-ttl01 .small {
    font-size: 12px;
  }
  .c-ttl01.bg {
    font-size: 15px;
    padding: 7px 10px 7px;
    min-height: 44px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .c-ttl01.bg.mb {
    margin-bottom: 15px;
  }
  .c-ttl01.bg.mb-50 {
    margin-bottom: 15px;
  }
  .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::before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #ffffff;
    right: 25px;
  }
  .c-btn01 {
    font-size: 12px;
    padding: 11px 0;
  }
  .c-btn02::before {
    bottom: 0;
    top: 0;
    margin: auto;
    right: 22px;
    width: 17px;
    height: 17px;
  }
  .c-btn02::after {
    bottom: 0;
    top: 0;
    margin: auto;
    right: 28px;
    border-right: 2px solid #ff5400;
    border-top: 2px solid #ff5400;
    width: 8px;
    height: 8px;
  }
  .c-btn02 {
    padding: 13px 0 11px;
    max-width: 268px;
    -webkit-box-shadow: 0 4px 0 0 #8E3A11;
            box-shadow: 0 4px 0 0 #8E3A11;
  }
  .c-btn02 .top {
    font-size: 12px;
  }
  .c-btn02 .bottom {
    font-size: 20px;
    display: block;
  }
  .c-btn03::before {
    border-width: 9px 0 9px 9px;
    right: 49px;
    height: 18px;
    width: 9px;
  }
  .c-btn03 {
    border-radius: 10px;
    border: 2px solid #FF5400;
    padding: 8px 15px;
    font-size: 20px;
    width: calc(100% - 82px);
    margin-left: auto;
    margin-right: auto;
  }
  .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: 14px;
    padding-left: 19px;
    line-height: 1.4;
  }
  .check-list li + li {
    margin-top: 7px;
  }
  .check-list li::after {
    width: 13px;
    height: 13px;
    top: 3px;
  }
  .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;
  }
  .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: 40px;
  }
  .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 {
    border-width: 2px;
    padding: 5.6vw 9.6vw 6.4vw;
  }
  .home .tab-block .desc {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 400;
    margin-left: -23px;
    width: calc(100% + 46px);
    line-height: 1.38;
  }
  .home .tab-block .graph-wrap {
    padding-top: 59%;
    width: 100%;
    margin: 0 auto;
  }
  .home .c-btn-section .inner-block {
    padding-top: 16px;
    padding-bottom: 20px;
  }
  .home .c-btn-section .btn-ttl {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .home .c-btn-section .btn-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .home .movie-block {
    padding: 24px 0 24px;
  }
  .home .movie-block .l-ttl-wrap {
    gap: 0;
  }
  .home .movie-block .graph-ttl {
    margin: 21px 0 0;
  }
  .home .movie-block .bg-white {
    margin-top: 14px;
  }
  .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: 28px;
  }
  .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 .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: 24px 0 24px;
  }
  .home .environment-block .bg-white {
    margin-top: 14px;
  }
  .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: 24px 0 24px;
  }
  .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 {
    margin-top: 14px;
  }
  .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 .sector-block .movie-wrap {
    margin-top: 33px;
  }
  .home .sector-block .movie-wrap .ttl {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .home .sector-block .movie-wrap .l-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home .sector-block .movie-wrap .movie {
    margin: auto;
  }
  .home .btn-block {
    padding: 21px 0 22px;
  }
  .home .btn-block .c-btn01 {
    max-width: 294px;
    width: 45.6vw;
    font-size: 14px;
    padding: 7px 10px;
    margin: auto;
  }
  .home .performance-block {
    padding: 24px 0 24px;
  }
  .home .performance-block.performance-block02 {
    padding: 24px 0 24px;
  }
  .home .performance-block.performance-block02 .c-ttl01.mb {
    margin-bottom: 14px;
  }
  .home .performance-block .graph-wrap.mt-63 {
    margin-top: 21px;
    max-width: calc(100% - 40px);
  }
  .home .performance-block .graph-wrap {
    padding: 0;
    margin-top: 24px;
  }
  .home .performance-block .graph-wrap .img + .img {
    margin-top: 20px;
  }
  .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: 14px;
  }
  .home .performance-block .performance-tb {
    white-space: nowrap;
  }
  .home .performance-block .check-list li + li {
    margin-top: 8px;
  }
  .home .performance-block .check-list.sp-white li {
    color: #fff;
  }
  .home .performance-block .l-btn-wrap .ttl {
    font-size: 18px;
    grid-template-columns: 70px 1fr;
    gap: 15px;
    padding: 12px 36px;
  }
  .home .performance-block .l-btn-wrap .ttl .inn {
    text-align: center;
  }
  .home .about-block {
    padding: 41px 0 40px;
  }
  .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: 0;
  }
  .home .about-block .about-list > li {
    padding: 30px 12px 36px;
  }
  .home .about-block .about-list > li:not(:first-child) {
    margin-top: 25px;
  }
  .home .about-block .about-list > li:nth-child(2) .graph-attention {
    margin-top: 10px;
  }
  .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: 8px;
  }
  .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-wrap {
    font-size: 14px;
    border-bottom-width: 3px;
  }
  .home .about-block .about-list .ttl-area .num {
    border-bottom-width: 3px;
    font-size: 18px;
    line-height: 1.03;
    margin-top: 0;
    padding-bottom: 5px;
    min-width: 59px;
  }
  .home .about-block .about-list .ttl-area .num::after {
    height: 2px;
    bottom: -6px;
  }
  .home .about-block .about-list .ttl-area .num .inn {
    font-size: 14px;
  }
  .home .about-block .about-list .ttl-area .ttl {
    font-size: 13px;
    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 .desc .small {
    font-size: 10px;
  }
  .home .about-block .about-list .graph-wrap img {
    margin-top: -20px;
  }
  .home .about-block .about-list .graph-wrap .max-1075 {
    margin-top: 16px;
  }
  .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 > li {
    padding: 12px 0px;
    position: static;
    width: 100%;
  }
  .home .about-block .mold-list > li:not(:first-child) {
    margin-top: 0;
  }
  .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 {
    font-size: 12px;
    display: inline-block;
    margin-top: 5px;
    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: 59px;
    max-height: 59px;
  }
  .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;
    min-height: 59px;
    max-height: 59px;
  }
  .home .about-block .mold-list .txt {
    font-size: 10px;
  }
  .home .about-block .list-attention {
    position: absolute;
    bottom: 50px;
    font-size: 10px;
  }
  .home .disclaimer-block {
    padding-top: 16px;
    padding-bottom: 1.85em;
  }
  .home .disclaimer-block .inner-block {
    padding: 0 10px;
  }
  .home .disclaimer-block .attention__list {
    margin-top: 30px;
    gap: 1em;
  }
  .home .disclaimer-block .attention__list .js-accordion__link {
    font-size: 4vw;
    padding: 10px;
  }
  .home .intro-section .inner-block {
    padding: 56px 9px 48px;
  }
  .home .intro-section .ico {
    top: 16px;
  }
  .home .intro-section .ico.ico01 {
    max-width: 49px;
    left: 12px;
  }
  .home .intro-section .ico.ico02 {
    right: 12px;
    max-width: 48px;
  }
  .home .intro-section .intro-ttl {
    font-size: 15px;
  }
  .home .intro-section .intro-ttl .small {
    font-size: 14px;
  }
  .home .l-ttl-wrap .max-388 {
    max-width: 206px;
  }
  .home .l-ttl-wrap .max-369 {
    max-width: 229px;
  }
  .home .l-ttl-wrap .max-363 {
    max-width: 197px;
  }
  .home .l-ttl-wrap .max-331 {
    max-width: 179px;
  }
  .home .l-ttl-wrap .txt {
    font-size: 14px;
  }
  .home .aco-wrap .aco-ttl {
    font-size: 14px;
    padding: 12px 17px;
  }
  .home .aco-wrap .aco-ttl::before, .home .aco-wrap .aco-ttl::after {
    height: 2px;
    width: 12px;
    right: 23px;
  }
  .home .aco-wrap .aco-body {
    padding-top: 14px;
  }
  .home .faq-wrap {
    margin-top: 24px;
  }
  .home .faq-wrap .faq + .faq {
    margin-top: 40px;
  }
  .home .faq-wrap .aco-ttl {
    font-size: 14px;
    padding: 24px 12px;
  }
  .home .faq-wrap .aco-ttl::before, .home .faq-wrap .aco-ttl::after {
    height: 2px;
    width: 12px;
    right: 14px;
  }
  .home .faq-wrap .aco-ttl .inn {
    padding-left: 25px;
    padding-right: 22px;
  }
  .home .faq-wrap .aco-ttl .inn::before {
    font-size: 20px;
  }
  .home .faq-wrap .aco-body {
    padding: 0 12px 24px;
  }
  .home .faq-wrap .aco-body .inn {
    font-size: 14px;
    padding-left: 25px;
  }
  .home .faq-wrap .aco-body .inn::before {
    font-size: 20px;
    top: 2px;
  }
  .home .js-aco-wrap {
    max-width: 294px;
    width: 45.6vw;
    font-size: 14px;
    margin: auto;
  }
  .home .js-aco-body a::before {
    border-width: 5px 0 5px 5px;
    top: -2px;
    height: 10px;
    width: 5px;
    right: 11px;
  }
  .home .js-aco-body a + a {
    margin-top: 12px;
  }
  .fixed-btn-wrap {
    bottom: 70px;
  }
  .fixed-btn-wrap .btn {
    border-radius: 5px;
    grid-template-columns: 34px 1fr;
    gap: 4px;
    max-width: 158px;
    padding: 11px 9px;
  }
  .fixed-btn-wrap .btn::before {
    height: 10px;
    width: 10px;
    right: 9px;
  }
  .fixed-btn-wrap .btn::after {
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    right: 13px;
  }
  .fixed-btn-wrap .btn + .btn {
    margin-top: 4px;
  }
  .fixed-btn-wrap .btn .main {
    font-size: 14px;
  }
  .fixed-btn-wrap .btn .sub {
    font-size: 11px;
  }
  #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 {
    -webkit-box-shadow: 0 3px 0 0 #8E3A11;
            box-shadow: 0 3px 0 0 #8E3A11;
    border-width: 1px;
  }
  .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 {
    display: block;
    overflow-y: scroll;
    border-radius: 20px;
    padding: 9px 10px;
    background-color: #ff5400;
  }
  #modal_buying_uranium .modal__inner .flexBox {
    display: block;
    overflow-y: scroll;
    border-radius: 20px;
    padding: 9px 10px;
    background-color: #FFD1CB;
  }
  #modal_buying_uranium .intro-buying__headline {
    background: #FFD1CB;
  }
  #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;
    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:nth-child(1) img {
    min-width: 125px;
  }
  .intro-buying__list li:nth-child(2) img {
    min-width: 131px;
  }
  .intro-buying__list li:nth-child(3) img {
    min-width: 114px;
  }
  .intro-buying__list li:nth-child(5) img {
    min-width: 77px;
  }
  .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.au img {
    max-height: 34px;
    height: 100%;
  }
  .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;
    right: 2px;
  }
  .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;
  }
  .ico-img.max-500 {
    max-width: 229px;
  }
  .ico-img.max-590 {
    max-width: 259px;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1340px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-header .logo {
    width: min(266px, 13.8541666667vw);
  }
  .c-header .menu-list > li > a:hover {
    color: #ff5400;
  }
  .c-btn01:hover {
    background: #fff;
    color: #ff5400;
  }
  .c-btn01:hover::before {
    border-left-color: #ff5400;
  }
  .c-btn02:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  .c-btn03:hover {
    background: #FF5400;
    color: #fff;
  }
  .c-btn03:hover::before {
    border-color: transparent transparent transparent #fff;
  }
  .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: 56px 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 .c-btn01 {
    max-width: 380px;
  }
  .home .btn-block .c-btn01:hover {
    color: #ff5400;
    background-color: #fff;
  }
  .home .performance-block .graph-wrap .img.maw-1000 {
    margin-top: -90px;
  }
  .home .about-block .about-list .graph-wrap .max-1075 {
    margin-left: -37px;
    width: calc(100% + 75px);
  }
  .home .disclaimer-block .attention__list .js-accordion__link:hover {
    color: #002F37;
  }
  .home .l-ttl-wrap .max-363 {
    top: -47px;
    right: -74px;
  }
  .home .aco-wrap .aco-ttl:hover {
    background: #eee;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .home .js-aco-body a:hover {
    color: #002F37;
  }
  .fixed-btn-wrap .btn:hover {
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .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;
  }
  .floating-button a {
    font-size: 19px;
  }
}
@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::before {
    width: 24px;
    height: 24px;
    top: 4px;
  }
  .c-btn02::after {
    width: 8px;
    height: 8px;
    border-width: 2px;
    top: 4px;
  }
  .home .tab-block .tab .mid {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  .c-btn02 .top {
    font-size: 18px;
  }
  .c-btn02 .bottom {
    font-size: 30px;
  }
  .home .c-btn-section .btn-wrap {
    gap: 30px;
  }
  .home .about-block .about-list .ttl-area .ttl {
    font-size: 22px;
  }
}
@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 (min-width: 1221px) {
  .home .movie-block .l-ttl-wrap {
    width: calc(100% + 100px);
  }
}
@media only screen and (max-width: 767px) and (min-width: 500px) {
  .home .movie-block .attention {
    font-size: 12px;
  }
  .home .about-block .about-list .desc {
    font-size: 14px;
  }
}
@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 (max-width: 1080px) {
  .home .btn-block .inner-block {
    gap: 0 20px;
  }
  .home .js-aco-body {
    padding: 50px 10px 25px;
  }
  .home .js-aco-body a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1080px) and (max-width: 767px) {
  .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 .js-aco-body {
    border-radius: 15px 15px 10px 10px;
    border: 3px solid #ff5400;
    position: relative;
    top: 0;
    padding: 34px 10px 13px;
    margin: -28px auto 0;
  }
  .home .js-aco-body a {
    font-size: 12px;
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .home .btn-block .c-btn01 {
    font-size: 20px;
  }
}
@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 (max-width: 1000px) {
  .home .performance-block .l-btn-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@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 .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 (max-width: 1165px) {
  .home .about-block .mold-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 25px;
  }
}
@media only screen and (max-width: 1165px) and (max-width: 370px) {
  .home .about-block .mold-list {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 768px) and (max-width: 820px) {
  .home .about-block .mold-list > li:not(:first-child) {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 970px) {
  .home .intro-section .ico.ico01 {
    max-width: 90px;
  }
  .home .intro-section .ico.ico02 {
    max-width: 100px;
  }
}
@media only screen and (max-width: 900px) {
  .home .l-ttl-wrap {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .home .l-ttl-wrap .l-right {
    margin-left: auto;
  }
}
@media only screen and (min-width: 901px) {
  .home .l-ttl-wrap .max-331 {
    margin-top: -53px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1190px) {
  .home .faq-wrap .aco-ttl {
    padding: 30px 40px;
  }
}
@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 {
    border-radius: 10px;
  }
  #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 */