@charset "utf-8";

:root {
  --white: #fff;
  --offwhite: #f5f5f5;
  --black: #000;
  --red: red;
  --gray: #888;
  --gray-bg: #e4e4e4;
  --green-bg: #11c1b7;
  --darkred: #c4235b;
  --purple: #852781;
  --brown: #aa572d;
  --orange: #e9851e;
  --green-dark: #04574f;
  --blue-link: #00f;
  --magenta: #df0a72;
  --body: 1rem
}
.l-header {
  background-color: hsla(0,0%,100%,.95);
  box-shadow: 0 2px 12px -2.5px rgba(0,0,0,.2);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 300
}
.l-header__inner {
  display: flex;
  flex-flow: row wrap;
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
  padding: 0;
  position: relative;
  width: 100%
}

.l-header__inner-item {
  flex: 0 0 50%
}

.l-header__inner-item.-pc-w-wide {
  flex: 1 0 60%
}

.l-header__inner-item.-pc-w-small {
  flex: 0 0 36%
}

.l-header__logo {
  height: auto;
  padding: 15px 10px
}

.l-header__logo a {
  display: inline-block;
  height: 100%
}

.l-header__logo img {
  height: 42px;
  width: auto
}

.l-header__logo.-sales-logo {
  padding: 21px 10px
}

.l-header__logo.-sales-logo img {
  height: 28px;
  margin: 1px 0
}

.l-header__logo.-flex a {
  display: inline-flex
}

.l-header__link {
  display: flex;
  flex-flow: row wrap;
  gap: 28px;
  height: auto;
  place-content: center flex-end;
  place-items: center stretch;
  position: static;
  width: 100%
}

.l-footer {
  background-color: #e9851e;
  color: #fff;
  width: 100%
}

.l-footer__inner {
  align-items: flex-end;
  display: flex;
  flex-flow: row wrap;
  gap: 12px 32px;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
  padding: 42px 10px 72px;
  position: relative;
  width: 100%
}

.l-footer__inner .l-footer__inner-item {
  flex: 0 0 auto
}

.l-footer__inner .l-footer__inner-item.-w100 {
  flex: 0 0 100%
}

.l-footer__inner .l-footer__inner-date {
  text-align: right;
  width: 100%
}

.u-py-60 {
  padding-bottom: 60px;
  padding-top: 60px;
}
.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.u-w-100 {
  width: 100%;
}
.u-bg-offwhite {
  background-color: var(--offwhite);
}
.c-contents-block {
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
  padding-left: 10px;
  padding-right: 10px;
}
.u-ta-center {
  text-align: center;
}
.u-mt-0 {
  margin-top: 0 !important;
}
.u-mt-8 {
  margin-top: 8px !important;
}
ul.c-list-notice li {
  padding-left: 1.3em;
  position: relative;
}
.u-fs-12 {
  font-size: .75rem;
}
ul.c-list-notice li:before {
  color: currentColor;
  content: "●";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
}

/* ==================================================
リンクボタン
================================================== */
/* ----- 通常ボタン ----- */
/* - 変数用 - */
.nmlBtn {
  /* カラム・幅など */
  --col: 2;
  --gapY: 24px;
  --gapX: 24px;
  --marginTop: 40px;
  --btnMaxW: 280px;
  --btnMinH: 68px;
  --btnPadding: 24px;
  --btnItemGap: 8px;
  /* 色 */
  --btnColor: #fff;
  --txtColor: #272727;
  --btnBoderColor: #0099B3;
  /* アイコン */
  --btnIconColor: #0099B3;
  --btnIcon: url(/special/smt-gold-index/images/icon_blank.svg);
  --btnIconWidth: 16px;
  --btnIconHeight: 16px;
}
/* - メイン - */
.nmlBtn {
  max-width: 100%;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-top: 24px;
}
.nmlBtn:first-child { margin-top: 0; }
.nmlBtn_item {
  --tmp1: calc(calc(var(--col) - 1) * 16px);
  --tmp2: calc(100% - var(--tmp1));
  --tmpW: calc(var(--tmp2) / var(--col));
  flex: 0 0 auto;
  width: var(--tmpW);
  max-width: var(--btnMaxW);
  display: flex;
  flex-direction: column;
}
.nmlBtn_item_inner {
  width: 100%;
  height: 100%;
  min-height: var(--btnMinH);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--txtColor);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
  background: var(--btnColor);
  border: 4px solid var(--btnBoderColor);
  border-radius: 8px;
  padding: 8px var(--btnPadding) 8px 24px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--defTrans);
}
/* - リンクアイコン - */
.nmlBtn_item_inner::after {
  content: '';
  width: var(--btnIconWidth);
  height: var(--btnIconHeight);
  position: absolute;
  right: 8px;
  bottom: 8px;
  background-color: var(--btnIconColor);
  transition: var(--transBg);

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-image: var(--btnIcon);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: var(--btnIcon);
}
/* - 色の種類 - */
.nmlBtn_item-fill {
  --btnColor: #0099B3;
  --txtColor: #fff;
  --btnIconColor: #fff;
}
/* - アイコンの種類 - */
a.nmlBtn_item_inner[target="_blank"] {
  --btnIcon: url(/special/smt-gold-index/images/icon_blank.svg);
}
/* - ホバー - */
.nmlBtn_item:not(.nmlBtn_item-fill) .nmlBtn_item_inner:hover {
  color: #fff;
  background: #0099B3;
}
.nmlBtn_item:not(.nmlBtn_item-fill) .nmlBtn_item_inner:hover::after {
  background-color: #fff;
}
.nmlBtn_item-fill .nmlBtn_item_inner:hover {
  color: #272727;
  background: #fff;
}
.nmlBtn_item-fill .nmlBtn_item_inner:hover::after {
  background-color: #0099B3;
}
.col1 { --col: 1; }
.col2 { --col: 2; }
.col3 { --col: 3; }

/* ==================================================
注釈リスト
================================================== */
.noteList {
  color: #272727;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 1.4px;
  margin-top: 16px;
}
.noteList:first-child { margin-top: 0; }
li > .noteList {
  margin-top: 8px;
}
.noteList > li {
  position: relative;
  padding-left: 1.5em;
  text-align: left;
}
.noteList > li:first-child { margin-top: 0; }
.noteList > li:before {
  content: "\203B";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}
.noteList > li.asterisk:before {
  content: "\FF0A";
}
/* .noteList li > .small {
  color: #272727;
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 1.2px;
} */
 .noteList li > span {
  margin-left: -2em;
 }
.acd .noteList {
  margin-top: 8px;
}

/* ==================================================
テーブル
================================================== */

/* nmlTable styles */
.nmlTable {
  margin-bottom: 24px;
}

/* decorative/background rows marked aria-hidden */
.nmlTable [aria-hidden="true"] {
  background: #DCDCDC;
  border: none;
}
.nmlTable thead tr th {
  background: #4A7EBB;
  color: #fff;
  height: auto;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
  letter-spacing: 1.4px;
  border-top: none;
  border-bottom: #707070;;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.nmlTable thead tr th:last-child {
  border-right: none;
}
.nmlTable thead + tbody > tr > th  {
  background-color: #DCDCDC;
  color: #272727;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 100% */
  letter-spacing: 1.4px;
  border: 1px solid #707070;
}
.nmlTable thead + tbody > tr > th {
  border-left: none;
}
.nmlTable thead + tbody > tr:last-child > th {
  border-bottom: none;
}
.nmlTable tbody tr td {
  background: #F4F4F4;
  color: #272727;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 100% */
  letter-spacing: 1.4px;
  border: 1px solid #707070;
}
.nmlTable tbody tr td:last-child {
  border-right: none;
}
.nmlTable tbody tr:last-child td {
  border-bottom: none;
}
.nmlTable th, .nmlTable td {
  vertical-align: middle;
  padding: 12px;
}
/* テーブル2 */
.nmlTable.table2 thead th{
  padding: 8px 12px;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 128.571% */
  letter-spacing: 1.4px;
}
.nmlTable.table2 #theadtitle02-01 {
  background: #FFBE18;
  color: #272727;
}
.nmlTable.table2 #theadtitle02-02 {
  background: #995817;
}
.nmlTable.table2 #theadtitle02-03 {
  background: #4A7EBB;
}
.nmlTable.table2 #theadtitle02-04 {
  background: #285C55;
}
.nmlTable.table2 #theadtitle02-05 {
  background: #844ABB;
}

/* ==================================================
アコーディオン
================================================== */
.acd {
  margin-top: 24px;
  border: none;
  background-color: #f4f4f4;
  margin-bottom: 24px;
}
.acd_btn_inner {
  justify-content: center;
}
.acd_btn_main {
  color: #272727;
  text-align: center;
  font-family: "Toppan Bunkyu Midashi Gothic";
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 33px; /* 150% */
  letter-spacing: 2.2px;
}
.acd_btn {
  margin: 20px 24px;
  padding-bottom: 0;
  width: auto;
  padding: 0;
  background-color: #F4F4F4;
}
.acd_btn .acd_btn_inner {
  background-color: #F4F4F4;
  padding-right: 0;
  gap: 12px;
}
.is-active .acd_btn {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 20px;
}
.acd_box {
  border-top: none;
  background: #F4F4F4;
  padding-top: 0;
}
.acd_box_main .nmlText {
  color: #272727;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 200% */
  letter-spacing: 1.6px;
}
.acd .nmlText + p:has(img) {
  margin-top: 16px;
}
.acd + h4 {
  padding-top: 24px;
  border-top: 2px dotted #272727;
}
.acd_btn_icon {
  position: static;
  background-image: url(/special/smt-gold-index/images/icon_plus.svg);
  margin: 0;
  width: 24px;
  height: 24px;
  transition: background-image 0.3s ease;
}
.is-active .acd_btn_icon {
  background-image: url(/special/smt-gold-index/images/icon_minus.svg);
}
.acd_btn_icon::before,.acd_btn_icon::after {
  content: none;
}


/* MV */
.mv {
  position: relative;
  overflow: hidden;
}
.mv__title {
  margin: 0;
  padding: 0;
}
.mv__title img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.mv::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(180deg, rgba(18, 17, 13, 0.00) 0%, #12110D 100%);
}

/* content_main */
.content_main {
  padding-bottom: 0;
}

/* ヘッダー分マイナスマージン */
.contentWrap {
  margin-top: -72px;
}

/* cntSec */
.cntSec {
  position: relative;
  background-color: #12110D;
}
.cntSec .cntSec_inner {
  width: 1000px;
  padding-right: 0;
  padding-left: 0;
}

/* nmlText */
.nmlText {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1.6px;
}
.nmlText + .gold_box {
  margin-top: 32px;
}

/* gold_Box */
.gold_box {
  position: relative;
  border-radius: 12px;
  padding: 24px;
  border: none;
  text-align: center;
  background-color: #FFF;
}
.gold_box.chart04 {
  padding: 24px 15px 24px 24px;
}
.gold_box.title {
  background: #12110D;
}
.gold_box .gold_box_body {
  padding: 0;
}
.gold_box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px; /* border thickness */
  border-radius: inherit;
  -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
  mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
  -webkit-mask-repeat: no-repeat;
  mask-composite: exclude;
  mask-repeat: no-repeat;
  pointer-events: none;
  background: linear-gradient(140deg, #FFBE18 0%, #995817 100%);
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
}
.gold_box .nmlText + .nmlText {
  margin-top: 16px;
}
.gold_box_body .nmlText + .nmlText {
  margin-top: 0;
}
/* アイコン付き */
.gold_box.icon {
  position: relative;
}
.gold_box.bgGold {
  background: linear-gradient(140deg, #FFBE18 0%, #995817 100%);
  padding: 63px 40px 40px 40px;
}
.gold_box.bgGold::before {
  background: linear-gradient(180deg, #D09500 0%, #7E4711 100%);
}
.gold_box .gold_box_icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%);
}

/* custom flex for specific box */
.gold_box--flex .gold_box_body {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
.gold_box + .nmlText {
  margin-top: 32px;
}
.gold_box + h3 {
  margin-top: 56px;
}
.gold_box .boxTitle {
  color: #272727;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px; /* 150% */
  letter-spacing: 2.2px;
  margin-bottom: 16px;
}
.gold_box .chartWrap + .boxTitle {
  margin-top: 32px;
  margin-bottom: 24px;
}
.gold_box .boxTitle_img {
  margin-bottom: 24px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;

}
.gold_box .nmlText.small {
  color: #272727;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 1.2px;
}
.gold_box_body + .small {
  margin-top: 16px;
  margin-bottom: 0 !important;
  text-align: left !important;
}
.gold_box > .small {
  margin-bottom: 16px;
  text-align: right;
}

/* 見出し */
h3 {
  text-align: center;
}
h3 + .nmlText {
  margin-top: 32px;
}

/* グラフ図 */
.chartWrap {
  position: relative;
}
.chartWrap .chart01_01 {
  position: absolute;
  top: 79px;
  left: 150px;
  width: auto;
}
.chartWrap .chart02_02,
.chartWrap .chart03_02 {
  position: absolute;
  bottom: 82px;
  left: 51px;
  width: auto;
}
.chartWrap .chart04_02 {
  position: absolute;
  bottom: 92px;
  left: 45px;
  width: auto;
}
.chartWrap .chart05_02 {
  position: absolute;
  bottom: 25px;
  left: 0.5%;
  width: 100%;
}

#section1::after {
  /* decorative SVG at top of section */
  content: "";
  position: absolute;
  left: 0;
  bottom: -120px;
  width: 100%;
  height: 120px; /* SVG viewBox height */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 120' preserveAspectRatio='none'%3E%3Cpath d='M800 120L1600 7.62939e-06H0L800 120Z' fill='%2312110D'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 120px; /* keep width auto, height fixed */
  pointer-events: none;
  z-index: 2;
}
#section2 {
  /* keep background image only */
  background-image: url('/special/smt-gold-index/images/bg_pc.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

#section2::before {
  /* overlay: semi-transparent color + blur on top of the background image */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(71, 36, 0, 0.5); /* slightly reduced alpha so image shows through */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: none;
  z-index: 1;
}

#section2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 80px;
  width: 100%;
  background: linear-gradient(180deg, rgba(18, 17, 13, 0.00) 0%, #12110D 100%);
  z-index: 3;
}

#section2 .cntSec_inner {
  position: relative;
  z-index: 2;
  padding-bottom: 94px;
}

/* section title spacing */
.section-title {
  position: relative;
  margin-top: 56px;
  height: 164px;
  z-index: 3;
}
.section-title img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#section2 {
  background-color: transparent;
  padding-top: 52px;
}

/* パネル */
.panel.col4 .panel_item {
  width: calc((100% - 72px) / 4);
}
.panel .panel_list {
  margin: 0;
  column-gap: 24px;
}
.panel_item.type-icon {
  padding: 0 0 33px;
}
.panel_item.type-icon .panel_inner {
  background-color: #FFF;
}
.panel_item.type-icon .panel_img {
  height: auto;
  border-radius: 0;
  margin-top: 44px;
}
.panel_item.type-icon .panel_img img {
  max-width: 100%;
  position: static;
  width: auto;
  height: auto;
}
.panel_item.type-icon .panel_txt {
  padding: 24px 16px 0;
}
.panel_item.type-icon .panel_txt .text-main {
  color: #272727;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px; /* 150% */
  letter-spacing: 1.8px;
}
.marker {
  background: linear-gradient(transparent 70%, #FFBE18 70%);
}
.nmlText.heading_num {
  margin-top: 100px;
  margin-bottom: 16px;
}
.heading_num+h3+.nmlText {
  margin-top: 40px;
}
#section2 .imgWrap {
  width: 800px;
  margin: 0 auto;
}
#section2 .imgWrap .small {
  color: #272727;
  text-align: right;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 114.286% */
  letter-spacing: 1.4px;
  margin-bottom: 8px;
}


/* ==================================================
section3
================================================== */
#section3 {
  --secGap: 50px;
  --secPaddingB: 100px;
  position: relative;
}
.sec03_ttl {
  text-align: center;
}
.sec03_catchBox {
  margin-top: 92px;
}
.sec03_catchBox_inner {
  position: relative;
  z-index: 0;
  text-align: center;
  border-radius: 12px;
  padding: 52px 24px 24px;
}
.sec03_catchBox_inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  background: linear-gradient(45deg, #FFBE18, #995817);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: 12px;
  padding: 4px;
}
.sec03_catchBox_ttlWrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec03_catchBox_ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.4px;
  text-align: center;
  background-color: #12110D;
  padding: 0 40px;
}
.sec03_catchBox_ttl > span {
  background: linear-gradient(92deg, #FFCB74 0%, #FFBE18 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec03_catchBox_txt {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
  letter-spacing: 1.44px;
}
.sec03_catchBox_arrow {
  width: 624px;
  height: 75px;
  display: flex;
  justify-content: center;
  color: #272727;
  font-size: 20px;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 1.8px;
  text-align: center;
  background-color: #FFBE18;
  margin: auto;
  padding-top: 16px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.sec03_heading {
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
}
.sec03_heading:first-child { margin-top: 0; }
.sec03_heading + .nmlText {
  margin-top: 24px;
  line-height: 24px; /* 150% */
}
.sec03_grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  margin-top: 100px;
}
.sec03_grid_item > .sec03_box {
  height: 100%;
}
.sec03_box {
  position: relative;
  z-index: 0;
  display: flex;
  gap: 24px;
  flex-direction: column;
  background-color: #fff;
  border-radius: 12px;
  margin-top: 24px;
  padding: 24px;
}
.sec03_box:first-child { margin-top: 0; }
.sec03_box::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  z-index: -1;
  background: linear-gradient(135deg, #FFBE18, #995817);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: 12px;
  padding: 4px;
}
.sec03_box_head {}
.sec03_box_body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.sec03_box_foot {
  margin-top: auto;
}
.sec03_box_balloon {
  position: relative;
  margin-top: -76px;
  text-align: center;
}
.sec03_box_label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.8px;
  text-align: center;
}
.sec03_box_label > span {
  background-color: rgba(39, 39, 39, 1);
  border-radius: 40px;
  padding: 8px 24px;
}
.sec03_box_ttl {
  color: #995817;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.2px;
  margin-top: 8px;
}
.sec03_box_ttl:first-child { margin-top: 0; }
.sec03_box_grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 160px;
}
.sec03_box_grid_item {
}
.sec03_box_txt {
  color: #272727;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px; /* 168.75% */
  letter-spacing: 1.6px;
}
.sec03_box_txt01 {
  color: #272727;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
  letter-spacing: 1.6px;
}
.sec03_box_img {
  margin-top: 28px;
}
.sec03_box_img:first-child { margin-top: 0; }
.sec03_box_txt02 {
  color: #272727;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.8px;
  margin-top: 8px;
}
.sec03_box_txt02:first-child { margin-top: 0; }
.sec03_box_txt03 {
  color: #272727;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.4px;
}

/* アニメーション */
.delay {
  opacity: 0;
  transform: translateY(40px);
  transition: all
  ease 0.5s;
}
.delay.done {
  opacity: 1;
  transform: none;
}
.delay.fadein{
  transform: none;
  transition-delay: 0.5s;
}
.chartWrap .delay {
  /* ensure animated elements inside chartWrap don't create a transform-containing block that shifts absolute children */
  transform: none !important;
}
.delay.fadein.leftToRight img {
  /* start reveal slightly from left (show 15% initially) */
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.8s, -webkit-clip-path 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.8s;
  will-change: clip-path;
  display: block;
  width: 100%;
  height: auto;
}
.delay.fadein.leftToRight.done img {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
