@charset "UTF-8";
/*--------------------------------------------------------------------------
fadeイベント（TOPのfadeイベント専用）
--------------------------------------------------------------------------*/
._ncoke_fade,
._ncoke_fade_upper,
._ncoke_fade_under,
._ncoke_fade_right,
._ncoke_fade_left {
  opacity: 0;
}

._ncoke_in ._ncoke_fade {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: ncoke_fade_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes ncoke_fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
._ncoke_in ._ncoke_fade_upper {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: ncoke_fade_upper_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes ncoke_fade_upper_in {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
._ncoke_in ._ncoke_fade_under {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: ncoke_fade_under_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes ncoke_fade_under_in {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
._ncoke_in ._ncoke_fade_right {
  animation-delay: 0.3s;
  animation-duration: 0.5s;
  animation-name: ncoke_fade_right_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes ncoke_fade_right_in {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
._ncoke_in ._ncoke_fade_left {
  animation-delay: 0.3s;
  animation-duration: 0.5s;
  animation-name: ncoke_fade_left_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes ncoke_fade_left_in {
  0% {
    opacity: 0;
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------------------
fadeイベント（採用メッセージのfadeイベント専用）
--------------------------------------------------------------------------*/
._ncoke_fade_msg {
  opacity: 0;
}

._ncoke_msg_in ._ncoke_fade_msg {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: ncoke_fade_msg_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes ncoke_fade_msg_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------------------
fadeイベント（通常用）
--------------------------------------------------------------------------*/
._fade,
._fade_upper,
._fade_under,
._fade_right,
._fade_left,
._fade_zoom {
  opacity: 0;
}

._fade_in {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: fade_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
._fade_upper_in {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: fade_upper_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_upper_in {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
._fade_under_in {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: fade_under_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_under_in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
._fade_right_in {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: fade_right_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_right_in {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
._fade_left_in {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: fade_left_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_left_in {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
._fade_zoom_in {
  animation-delay: 0.3s;
  animation-duration: 0.9s;
  animation-name: fade_zoom_in;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_zoom_in {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
._fade_left_loop_in {
  animation-delay: 0.3s;
  animation-duration: 0.8s;
  animation-name: fade_left_loop_in;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_left_loop_in {
  0% {
    transform: translateX(-7px);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-7px);
  }
}
._fade_right_loop_in {
  animation-delay: 0.3s;
  animation-duration: 0.8s;
  animation-name: fade_right_loop_in;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade_right_loop_in {
  0% {
    transform: translateX(7px);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(7px);
  }
}
@font-face {
  font-family: "NotoSansJP-Resize";
  src: url("../fonts/NotoSansJP-Bold_Resize.woff2");
  font-weight: 700;
}
@font-face {
  font-family: "NotoSansJP-Resize";
  src: url("../fonts/NotoSansJP-Medium_Resize.woff2");
  font-weight: 500;
}
@font-face {
  font-family: "NotoSansJP-Resize";
  src: url("../fonts/NotoSansJP-Regular_Resize.woff2");
  font-weight: 400;
}
@font-face {
  font-family: "NotoSansJP-Resize";
  src: url("../fonts/NotoSansJP-Light_Resize.woff2");
  font-weight: 300;
}
html {
  font-family: "NotoSansJP-Resize", sans-serif;
  background-color: #FFF;
}

body {
  position: relative;
}

main .contents * {
  box-sizing: border-box;
  color: unset;
  font-feature-settings: "palt";
  text-align: justify;
}
main .contents figure {
  margin: unset;
}
main .contents img {
  display: block;
}
main .contents a,
main .contents button {
  text-decoration: none;
  transition: 0.1s linear;
}
main .contents .outer {
  padding-left: 20px;
  padding-right: 20px;
}
main .contents .inner {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  main .contents .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  main .contents .sp {
    display: none !important;
  }
}

footer,
aside,
.nwlinks {
  background-color: #E6EBEE !important;
}

.nw_common {
  height: 100%;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  word-break: normal;
  word-wrap: break-word;
  height: 100%;
  background-color: #FFFFFF;
  color: #323232;
  font-size: 16px;
  line-height: 1.5;
}
.nw_common img {
  margin: 0;
  vertical-align: bottom;
}
.nw_common .imgbox img {
  max-width: 100%;
}
.nw_common a:link {
  color: #36C;
  text-decoration: none;
}
.nw_common a:visited {
  color: #36C;
  text-decoration: none;
}
.nw_common a:hover {
  color: #47459A;
  text-decoration: underline;
}
.nw_common #head {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.nw_common .head_l {
  position: relative;
  float: left;
}
.nw_common .head_r {
  position: relative;
  float: right;
}
.nw_common #head .logo {
  float: left;
  margin: 18px 10px 10px 18px;
}
.nw_common #head .logo:hover {
  opacity: 0.75;
}
.nw_common .contact {
  margin: 10px 20px 15px 20px;
}
.nw_common .contact a {
  display: block;
}
.nw_common .contact a:hover {
  opacity: 0.8;
}
.nw_common .snsbtn {
  display: inline-block;
  /*
  	height: 20px;
  */
  min-height: 20px;
  overflow: hidden;
  margin: 5px;
  vertical-align: top;
}
.nw_common .snsbtn_pc {
  padding: 10px 5px 5px 10px;
}
.nw_common .snsbtn_mb {
  float: right;
  margin: 10px 5px 0 5px;
}
.nw_common .snsbtn_mb a {
  display: inline-block;
  margin: 0 5px 10px 0;
}
.nw_common .pdf_dl {
  font-weight: normal;
  text-align: right;
  font-size: 10px;
  padding: 0 20px 10px 10px;
}
@media all and (min-width: 768px) {
  .nw_common #head {
    min-height: 102px;
  }
}
.nw_common .main {
  position: relative;
  background-color: #EEEEEF;
  color: #323232;
}
.nw_common .topimg {
  position: relative;
  height: 760px;
  background-image: url(../images/topbg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
.nw_common .topimg_inner {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*For Old WebKit*/
  background: -webkit-linear-gradient(top, #d0e0e9 33%, rgba(255, 255, 255, 0) 100%);
  /*For Modern Browser*/
  background: linear-gradient(to bottom, #d0e0e9 33%, rgba(255, 255, 255, 0) 100%);
}
@media all and (max-width: 1279px) {
  .nw_common .topimg {
    height: 0;
    padding: calc(50% + 20px) 20px 20px 20px;
  }
}
@media all and (max-width: 767px) {
  .nw_common .topimg {
    height: 480px;
    padding: 0;
  }
}
.nw_common .wrapper {
  width: 94%;
  max-width: 1000px;
  margin: 0 auto;
}
.nw_common .chapter {
  padding: 50px 0;
}
.nw_common .chapter_hd {
  display: flex;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  padding: 10px;
  color: #8E000F;
  border-bottom: 1px solid #8E000F;
  margin-bottom: 30px;
}
.nw_common .chapter_hd_sub {
  font-size: 16px;
}
.nw_common .chapter_no {
  margin-right: 0.5em;
}
.nw_common .chapter_bd {
  background-color: #FFFFFF;
  border-radius: 40px;
  overflow: hidden;
  padding: 20px 12%;
}
.nw_common .sect_hd {
  display: flex;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.25;
  padding: 10px;
  margin-top: 40px;
  color: #000000;
}
.nw_common .sect_hdmark {
  display: inline-block;
  min-width: 4px;
  margin-right: 0.5em;
  /*For Old WebKit*/
  background: -webkit-linear-gradient(top left, #d7000f 0%, #d7000f 50%, #8e000f 50%, #8e000f 100%);
  /*For Modern Browser*/
  background: linear-gradient(to bottom right, #d7000f 0%, #d7000f 50%, #8e000f 50%, #8e000f 100%);
}
.nw_common .sect_nm {
  padding: 4px;
}
.nw_common .sect_bd {
  margin: 10px;
}
.nw_common .sect_bd p {
  margin: 10px 0;
}
.nw_common .sect_bd > ul > li {
  list-style: disc;
  margin: 10px 0 10px 20px;
  line-height: 1.25;
}
.nw_common .fig {
  position: relative;
  background-color: #EEEEEF;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  margin: 30px auto;
  text-align: center;
}
.nw_common .fig > .imgbox {
  position: relative;
}
.nw_common .youtube {
  position: relative;
  padding-top: 56.25%;
}
.nw_common .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nw_common .absanime {
  position: absolute;
  z-index: 100;
}
@media all and (max-width: 767px) {
  .nw_common .chapter_hd {
    font-size: 16px;
  }
  .nw_common .chapter_bd {
    border-radius: 10px;
    padding: 10px;
  }
  .nw_common .sect_hd {
    font-size: 16px;
  }
}
.nw_common .absanime_1_3 {
  left: calc(50% - 72px);
  bottom: 0;
  padding-bottom: 25%;
  width: 120px;
  height: 120px;
  background-image: url(../images/fig1-3_anime_0.png);
  background-repeat: no-repeat;
  background-position: top center;
}
.nw_common .absanime_1_3_inner {
  z-index: 110;
  width: 120px;
  height: 120px;
  background-image: url(../images/fig1-3_anime_1.png);
  background-repeat: no-repeat;
  background-position: top center;
  animation: 4s linear infinite anime_1_3;
}
@keyframes anime_1_3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@media all and (max-width: 767px) {
  .nw_common .absanime_1_3 {
    left: calc(50% - 60px);
    padding-bottom: 493px;
  }
}
@media all and (max-width: 449px) {
  .nw_common .absanime_1_3 {
    padding-bottom: calc(155% - 35px);
  }
}
.nw_common .absanime_2_1.pconly {
  top: 0;
  left: 0;
  background-size: contain;
  width: 100%;
  padding-top: 100%;
  background-image: url(../images/fig2-1_anime_pc_0.png);
  background-repeat: no-repeat;
  background-position: top center;
}
.nw_common .absanime_2_1.pconly .absanime_2_1_inner {
  z-index: 110;
  position: relative;
  background-size: contain;
  margin-top: -100%;
  width: 100%;
  padding-top: 100%;
  background-image: url(../images/fig2-1_anime_pc_1.png);
  background-repeat: no-repeat;
  background-position: top center;
  animation: 4s linear infinite anime_2_1;
}
.nw_common .absanime_2_1.mbonly {
  top: 140px;
  left: -3px;
  background-size: contain;
  width: 100%;
  padding-top: 100%;
  background-image: url(../images/fig2-1_anime_mb_0.png);
  background-repeat: no-repeat;
  background-position: top center;
}
.nw_common .absanime_2_1.mbonly .absanime_2_1_inner {
  z-index: 110;
  position: relative;
  background-size: contain;
  margin-top: -100%;
  width: 100%;
  padding-top: 100%;
  background-image: url(../images/fig2-1_anime_mb_1.png);
  background-repeat: no-repeat;
  background-position: top center;
  animation: 4s linear infinite anime_2_1;
}
@keyframes anime_2_1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.nw_common .droptable .tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 5px;
}
.nw_common .droptable .th {
  padding: 4px 4px 4px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.25;
  width: 150px;
}
.nw_common .droptable .td {
  padding: 4px 8px 4px 24px;
  line-height: 1.25;
}
.nw_common .droptable .td a {
  font-size: 18px;
  font-weight: bold;
}
.nw_common .chranime {
  width: 170px;
  height: 120px;
  font-size: 0;
}
.nw_common #chranime_1-1 {
  margin: 0 auto;
}
.nw_common #chranime_1-2 {
  margin: 0 10% 0 auto;
}
.nw_common #chranime_1-3_1 {
  position: absolute;
  z-index: 300;
  left: 15%;
  bottom: 0;
}
.nw_common #chranime_1-3_2 {
  position: absolute;
  z-index: 300;
  right: 15%;
  bottom: 0;
}
.nw_common #chranime_2-1_1 {
  position: absolute;
  z-index: 300;
  right: 1%;
  top: calc(21% - 125px);
}
.nw_common #chranime_2-1_2 {
  position: absolute;
  z-index: 300;
  right: -20px;
  bottom: 18%;
}
.nw_common #chranime_2-1_3 {
  position: absolute;
  z-index: 300;
  left: -30px;
  bottom: 10%;
}
.nw_common #chranime_5-1_1 {
  position: absolute;
  z-index: 300;
  right: 10%;
  top: 20%;
}
.nw_common #chranime_5-2_1 {
  position: absolute;
  z-index: 300;
  right: 10%;
  top: 10%;
}
.nw_common #chranime_5-4_1 {
  position: absolute;
  z-index: 300;
  right: 10%;
  bottom: 0;
}
@media all and (max-width: 1079px) {
  .nw_common #chranime_1-3_1 {
    left: calc(5% + 20px);
  }
  .nw_common #chranime_1-3_2 {
    right: calc(5% + 20px);
  }
  .nw_common #chranime_2-1_1 {
    width: 119px;
    top: calc(18.5% - 80px);
  }
  .nw_common #chranime_5-1_1 {
    right: -20px;
  }
  .nw_common #chranime_5-2_1 {
    width: 119px;
    right: 5%;
    top: 21%;
  }
}
@media all and (max-width: 767px) {
  .nw_common #chranime_1-3_1 {
    left: calc(50% - 85px);
    bottom: 620px;
  }
  .nw_common #chranime_1-3_2 {
    right: calc(50% - 85px);
    bottom: 15px;
  }
  .nw_common #chranime_2-1_3 {
    left: calc(50% - 85px);
    top: 32.5%;
  }
}
@media all and (max-width: 449px) {
  .nw_common #chranime_1-3_1 {
    bottom: 40%;
  }
  .nw_common #chranime_2-1_3 {
    width: 119px;
    left: calc(50% - 60px);
    top: 33%;
  }
  .nw_common #chranime_5-1_1 {
    width: 119px;
  }
  .nw_common #chranime_5-2_1 {
    right: -20px;
    top: 15%;
  }
  .nw_common #chranime_5-4_1 {
    right: -20px;
    bottom: -20px;
  }
}
.nw_common .flexslider {
  position: relative;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
  background: transparent !important;
}
.nw_common .flex-direction-nav {
  position: absolute;
  width: 100%;
  top: 50%;
}
.nw_common .flex-control-nav {
  bottom: -25px !important;
}
.nw_common .flex-next {
  position: absolute;
  left: auto !important;
  right: -25px !important;
}
.nw_common .flex-prev {
  left: -25px !important;
  right: auto !important;
}
.nw_common .btBlock {
  text-align: center;
  padding: 50px 0;
  clear: both;
}
.nw_common .btBlock #btn_caution {
  font-size: 12px;
  line-height: 1.25;
  color: #666666;
  margin: 10px auto;
  max-width: 80%;
}
.nw_common .btBlock .formBt {
  display: inline-block;
  font-weight: bold;
  border-radius: 8px;
  overflow: hidden;
  margin: 10px;
  background-color: #535D64;
  color: #FFFFFF;
}
.nw_common .btBlock .formBt:hover {
  opacity: 0.8;
  cursor: pointer;
}
.nw_common .btBlock .formBt a {
  display: inline-block;
  padding: 20px 30px;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 1px;
}
.nw_common .company {
  margin: 0 auto;
  line-height: 1.5;
  max-width: 730px;
  padding: 0 10px;
}
.nw_common .company h2 {
  padding: 8px 10px;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 15px;
  color: #000;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  /*For Old WebKit*/
  background: -webkit-linear-gradient(top, white 0%, #f0f0f0 100%);
  /*For Modern Browser*/
  background: linear-gradient(to bottom, white 0%, #f0f0f0 100%);
}
.nw_common .company h2 span {
  border-left: 4px solid #CC0000;
  padding: 4px 8px;
  display: inline-block;
  line-height: 1;
}
.nw_common .company table {
  border-left: #CCC solid 1px;
  border-top: #CCC solid 1px;
  font-size: 12px;
}
.nw_common .company th {
  border-right: #CCC solid 1px;
  border-bottom: #CCC solid 1px;
  padding: 6px 10px;
  width: 20%;
  white-space: nowrap;
  background-color: #F3F4F1;
}
.nw_common .company td {
  border-right: #CCC solid 1px;
  border-bottom: #CCC solid 1px;
  padding: 6px 10px;
}
.nw_common.nwlinks {
  text-align: center;
  border-top: 2px solid #F0F0F0;
  border-bottom: 2px solid #F0F0F0;
  padding: 5px 0;
}
.nw_common.nwlinks ul {
  text-align: center;
  font-size: 0;
}
.nw_common.nwlinks li {
  list-style: none;
  color: #999999;
  font-size: 14px;
  line-height: 1;
  margin: 0;
}
.nw_common.nwlinks li a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #999999;
}
.nw_common.nwlinks li a:hover {
  color: #3366CC;
  text-decoration: underline;
}
@media all and (min-width: 768px) {
  .nw_common.nwlinks li {
    display: inline-block;
  }
  .nw_common.nwlinks li:not(:last-of-type)::after {
    content: "｜";
    margin: 0 5px;
  }
}
.nw_common #footer {
  text-align: center;
  padding: 40px 0 60px;
  font-size: 11px;
  color: #999;
}
.nw_common .clear {
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  margin: 0px;
}
@media all and (max-width: 1599px) {
  .nw_common .lgonly {
    display: none;
  }
}
@media all and (min-width: 1600px) {
  .nw_common .mdonly {
    display: none;
  }
}
@media all and (max-width: 767px) {
  .nw_common .lgonly,
.nw_common .mdonly,
.nw_common .pconly {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .nw_common .mbonly {
    display: none;
  }
}

#pagetop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 5;
  cursor: pointer;
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #000;
  background-image: url(../img/common/icon_pagetop.svg);
  background-size: 20px 20px;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  body main #contents {
    /* 方眼紙模様に必須のスタイル */
    background-image: linear-gradient(0deg, transparent calc(100% - 0.13vw), #f0f0f0 calc(100% - 0.13vw)), linear-gradient(90deg, transparent calc(100% - 0.13vw), #f0f0f0 calc(100% - 0.13vw));
    background-size: 2.08vw 2.08vw;
    background-repeat: repeat;
    background-position: center center;
    overflow-x: hidden;
  }
  body main #contents * {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents * {
    font-size: 3.5vw;
  }
}
@media (max-width: 767px) {
  body main #contents p {
    color: #4C4948;
    line-height: 1.75;
  }
  body main #contents p:not(:last-child) {
    margin-bottom: 1em;
  }
}
@media (max-width: 767px) {
  body main #contents .box-01__inner .contents,
body main #contents .box-02__inner,
body main #contents .box-03__inner,
body main #contents .box-04__inner {
    margin: 0 auto;
    padding: 15.64vw 7.82vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-01__inner .contents {
    padding-top: unset;
  }
}
@media (max-width: 767px) {
  body main #contents .box-04__inner {
    padding: unset;
  }
}
@media (max-width: 767px) {
  body main #contents #change-btns__02 .change-btns__inner {
    padding-top: unset;
  }
}
@media (max-width: 767px) {
  body main #contents .change-btns__inner {
    padding: 7.82vw 7.82vw;
    text-align: center;
  }
  body main #contents .change-btns__inner h2 {
    margin-bottom: 5.21vw;
    text-align: center;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .change-btns__inner h2 {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents .change-btns__inner ul {
    display: inline-grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5.21vw;
  }
  body main #contents .change-btns__inner ul li {
    padding: 1em;
    border: solid 0.13vw #000;
    display: inline-block;
    cursor: pointer;
  }
  body main #contents .change-btns__inner ul li._active {
    border-width: 0.26vw;
    background-color: #E6EBEE;
  }
}
@media (max-width: 767px) {
  body main #contents .change-btns__inner p {
    margin-top: 5.21vw;
    text-align: center;
  }
}
@media (max-width: 767px) {
  body main #contents .box-01 {
    position: relative;
    min-height: 0.13vw;
  }
  body main #contents .box-01__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
  }
  body main #contents .box-01__inner._active {
    transform: translateX(0);
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
    position: relative;
  }
  body main #contents .box-01__inner._slide-out {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 0;
  }
  body main #contents .box-01__inner > h2 {
    display: flex;
  }
  body main #contents .box-01__inner > h2 .h2_inner {
    width: 100%;
    padding: 0.5em 1em;
    padding-left: calc(1em + 10.43vw);
    background-color: #000;
    text-align: center;
    color: #FFF;
    font-size: 25.6px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .box-01__inner > h2 .h2_inner {
    font-size: 5vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-01__inner > h2::after {
    content: "";
    width: 10.43vw;
    display: block;
    background-color: #000;
    clip-path: polygon(0 0, 100% 0, 0 100%, 0% 100%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .intro {
    display: block;
  }
  body main #contents #box-01__inner__2025v2 .intro .text-area {
    max-width: 146.02vw;
    margin: 0 auto;
    padding: 7.82vw 7.82vw;
  }
  body main #contents #box-01__inner__2025v2 .intro .text-area p {
    margin-bottom: unset;
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .intro .text-area p {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents {
    display: grid;
    gap: 7.82vw;
  }
  body main #contents #box-01__inner__2025v2 .contents > h2 {
    display: flex;
    justify-content: center;
    position: relative;
  }
  body main #contents #box-01__inner__2025v2 .contents > h2 .h2_border {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 100vw;
    height: 0.26vw;
    background-color: #000;
    overflow-x: hidden;
  }
  body main #contents #box-01__inner__2025v2 .contents > h2 .h2_inner {
    z-index: 2;
    padding: 0.5em;
    background-color: #000;
    text-align: center;
    color: #FFF;
    font-size: 22.4px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents > h2 .h2_inner {
    font-size: 4.3vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents > h2::before {
    content: "";
    width: 5.21vw;
    display: block;
    background-color: #000;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents > h2::after {
    content: "";
    width: 5.21vw;
    display: block;
    background-color: #000;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents {
    display: grid;
    gap: 2.6vw;
  }
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox {
    padding: 2.6vw;
    grid-template-rows: subgrid;
    grid-template-columns: max-content 1fr;
    display: grid;
    grid-row: span 2;
    gap: 1.3vw 0;
    clip-path: polygon(2.6vw 0, calc(100% - 2.6vw) 0, 100% 2.6vw, 100% calc(100% - 2.6vw), calc(100% - 2.6vw) 100%, 2.6vw 100%, 0 calc(100% - 2.6vw), 0 2.6vw);
  }
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox figure {
    grid-row: 1/2;
    grid-column: 1/2;
    width: 26.07vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox figure img {
    height: 15.64vw;
  }
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox h3 {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox h3 .first-line {
    padding-bottom: 1.3vw;
    border-bottom: 0.13vw solid #FFF;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox h3 .first-line {
    font-size: 3.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox h3 .second-line {
    padding-top: 1.3vw;
    padding-bottom: 1.3vw;
    border-bottom: 0.13vw solid #FFF;
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox h3 .second-line {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox p {
    grid-row: 2/3;
    grid-column: 1/3;
    color: #FFF;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox p {
    font-size: 3.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox.inbox-01 {
    background-color: #507936;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox.inbox-02 {
    background-color: #4E93A6;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox.inbox-03 {
    background-color: #20689C;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .column {
    padding: 5.21vw;
    display: grid;
    gap: 2.6vw;
    background-color: #FFF;
    filter: drop-shadow(1.3vw 1.3vw 2.6vw rgba(0, 0, 0, 0.2));
  }
  body main #contents #box-01__inner__2025v2 .contents .column h3 {
    padding: 2.6vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #507936;
    clip-path: polygon(100% 0, 100% calc(100% - 2.6vw), calc(100% - 2.6vw) 100%, 0 100%, 0 0);
  }
  body main #contents #box-01__inner__2025v2 .contents .column h3 .first-line {
    color: #FFF;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .column h3 .first-line {
    font-size: 2.7vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .column h3 .second-line {
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .column h3 .second-line {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .future {
    padding: 5.21vw;
    display: grid;
    gap: 2.6vw;
    background-color: #FFF;
    filter: drop-shadow(1.3vw 1.3vw 2.6vw rgba(0, 0, 0, 0.2));
  }
  body main #contents #box-01__inner__2025v2 .contents .future h2 {
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-template-columns: auto auto;
    gap: 2.6vw;
    align-items: center;
  }
  body main #contents #box-01__inner__2025v2 .contents .future h2::before {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 4;
    grid-column: 1/2;
    content: "";
    width: 1.3vw;
    height: 100%;
    margin-right: 2.6vw;
    display: block;
    background-color: #A6AFB5;
  }
  body main #contents #box-01__inner__2025v2 .contents .future h2 > figure {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 2;
    grid-column: 2/3;
    gap: 2.6vw;
    align-items: center;
  }
  body main #contents #box-01__inner__2025v2 .contents .future h2 > figure img:nth-child(1) {
    grid-row: 1/2;
    width: 100%;
  }
  body main #contents #box-01__inner__2025v2 .contents .future h2 > figure img:nth-child(2) {
    grid-row: 2/3;
    justify-self: center;
    width: 5.21vw;
    transform: rotate(90deg);
  }
  body main #contents #box-01__inner__2025v2 .contents .future .text {
    grid-row: 3/4;
    grid-column: 2/3;
    justify-self: center;
    align-self: center;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .future .text {
    font-size: 3.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .future .maker {
    grid-row: 4/5;
    grid-column: 2/3;
  }
  body main #contents #box-01__inner__2025v2 .contents .future .maker figure {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body main #contents #box-01__inner__2025v2 .contents .future .maker figure img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .intro {
    max-width: 146.02vw;
    margin: 0 auto;
    padding: 7.82vw 7.82vw;
  }
  body main #contents #box-01__inner__2025v3 .intro figure {
    margin-bottom: 7.82vw;
  }
  body main #contents #box-01__inner__2025v3 .intro figure img {
    margin: 0 auto;
  }
  body main #contents #box-01__inner__2025v3 .intro .text-area p {
    margin-bottom: unset;
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .intro .text-area p {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents {
    display: grid;
    gap: 7.82vw;
  }
  body main #contents #box-01__inner__2025v3 .contents > h2 {
    display: flex;
    justify-content: center;
    position: relative;
  }
  body main #contents #box-01__inner__2025v3 .contents > h2 .h2_border {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 100vw;
    height: 0.26vw;
    background-color: #000;
    overflow-x: hidden;
  }
  body main #contents #box-01__inner__2025v3 .contents > h2 .h2_inner {
    z-index: 2;
    padding: 0.5em;
    background-color: #000;
    text-align: center;
    color: #FFF;
    font-size: 22.4px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents > h2 .h2_inner {
    font-size: 4.3vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents > h2::before {
    content: "";
    width: 5.21vw;
    display: block;
    background-color: #000;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents > h2::after {
    content: "";
    width: 5.21vw;
    display: block;
    background-color: #000;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents__intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7.82vw 0;
  }
  body main #contents #box-01__inner__2025v3 .contents__intro .title {
    grid-column: 1/3;
  }
  body main #contents #box-01__inner__2025v3 .contents__intro .title h3 {
    text-align: center;
    color: #4C4948;
    font-size: 28px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .title h3 {
    font-size: 5.4vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .title h4 {
    text-align: center;
    color: #4C4948;
    font-size: 21px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .title h4 {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics {
    grid-column: 1/2;
    grid-template-columns: subgrid;
    display: grid;
  }
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5 {
    padding: 2.6vw;
    border-left: 0.26vw solid #000;
    border-right: 0.26vw solid #000;
  }
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5:not(:first-child) {
    margin-top: 5.21vw;
  }
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5 .first-line {
    text-align: center;
    color: #4C4948;
  }
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5 .first-line span {
    color: #4C4948;
    font-size: 80px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5 .first-line span {
    font-size: 15.6vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5 .second-line {
    text-align: center;
    color: #4C4948;
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5 .second-line {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents__intro p {
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents .column {
    padding: 5.21vw;
    display: grid;
    gap: 2.6vw;
    grid-template-columns: 1fr;
    background-color: #FFF;
    filter: drop-shadow(1.3vw 1.3vw 2.6vw rgba(0, 0, 0, 0.2));
  }
  body main #contents #box-01__inner__2025v3 .contents .column h3 {
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 2.6vw;
    background-color: #000;
    clip-path: polygon(100% 0, 100% calc(100% - 2.6vw), calc(100% - 2.6vw) 100%, 0 100%, 0 0);
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents .column h3 {
    font-size: 4.1vw;
  }
}
@media screen and (max-width: 767px) and (max-width: 130.24vw) {
  body main #contents #box-01__inner__2025v3 .contents .column h3 {
    grid-row: unset;
    grid-column: unset;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents .column .text-area {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents .future {
    padding: 5.21vw;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.6vw;
    background-color: #FFF;
    filter: drop-shadow(1.3vw 1.3vw 2.6vw rgba(0, 0, 0, 0.2));
  }
  body main #contents #box-01__inner__2025v3 .contents .future h3 {
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 2.6vw;
    background-color: #000;
    clip-path: polygon(100% 0, 100% calc(100% - 2.6vw), calc(100% - 2.6vw) 100%, 0 100%, 0 0);
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents .future h3 {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents .future h4 {
    grid-row: 2/3;
    grid-column: 1/2;
    font-size: 21px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents .future h4 {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents .future p {
    grid-row: 3/4;
    grid-column: 1/2;
    margin-bottom: unset;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents .future figure {
    grid-row: 4/5;
    grid-column: 1/2;
    width: 100%;
  }
  body main #contents #box-01__inner__2025v3 .contents .future figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .intro {
    max-width: 146.02vw;
    margin: 0 auto;
    padding: 7.82vw 7.82vw;
  }
  body main #contents #box-01__inner__2025v4 .intro .text-area p {
    margin-bottom: unset;
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .intro .text-area p {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents {
    display: grid;
    gap: 7.82vw;
  }
  body main #contents #box-01__inner__2025v4 .contents > h2 {
    width: calc(100% - 10.43vw);
    display: flex;
    justify-content: center;
    justify-self: center;
    position: relative;
    flex-direction: column;
  }
  body main #contents #box-01__inner__2025v4 .contents > h2 .h2_border {
    position: absolute;
    top: 50%;
    left: -13.04vw;
    transform: translateY(-50%);
    z-index: 1;
    width: 100vw;
    height: 0.26vw;
    background-color: #000;
    overflow-x: hidden;
  }
  body main #contents #box-01__inner__2025v4 .contents > h2 .h2_inner {
    z-index: 2;
    padding: 1em 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    text-align: center;
  }
  body main #contents #box-01__inner__2025v4 .contents > h2 .h2_inner.__01 {
    padding-bottom: unset;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents > h2 .h2_inner.__01 {
    font-size: 5.4vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents > h2 .h2_inner.__02 {
    color: #FFF;
    font-size: 19.6px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents > h2 .h2_inner.__02 {
    font-size: 3.8vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents > h2::before {
    content: "";
    width: 5.21vw;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: -5.22vw;
    background-color: #000;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents > h2::after {
    content: "";
    width: 5.21vw;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: -5.22vw;
    background-color: #000;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents__intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7.82vw 0;
  }
  body main #contents #box-01__inner__2025v4 .contents__intro .title {
    grid-column: 1/3;
  }
  body main #contents #box-01__inner__2025v4 .contents__intro .title h3 {
    text-align: center;
    color: #4C4948;
    font-size: 22.4px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents__intro .title h3 {
    font-size: 4.3vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents__intro p {
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents .future {
    padding: 5.21vw;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.6vw;
    background-color: #FFF;
    filter: drop-shadow(1.3vw 1.3vw 2.6vw rgba(0, 0, 0, 0.2));
  }
  body main #contents #box-01__inner__2025v4 .contents .future h3 {
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 2.6vw;
    background-color: #535D64;
    clip-path: polygon(100% 0, 100% calc(100% - 2.6vw), calc(100% - 2.6vw) 100%, 0 100%, 0 0);
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents .future h3 {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents .future h4 {
    grid-row: 2/3;
    grid-column: 1/2;
    color: #535D64;
    font-size: 21px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents .future h4 {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents .future p {
    grid-row: 3/4;
    grid-column: 1/2;
    margin-bottom: unset;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents .future figure {
    grid-row: 4/5;
    grid-column: 1/2;
    width: 100%;
  }
  body main #contents #box-01__inner__2025v4 .contents .future figure img {
    width: 100%;
  }
  body main #contents #box-01__inner__2025v4 .contents .future figure.edgematrix {
    background-color: #ebf6f9;
    padding: 5.21vw;
  }
  body main #contents #box-01__inner__2025v4 .contents .future figure.edgematrix img:not(:last-child) {
    margin-bottom: 5.21vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents .future dl {
    grid-row: 5/6;
    grid-column: 1/2;
    width: 100%;
  }
  body main #contents #box-01__inner__2025v4 .contents .future dl dt {
    padding: 2.6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #535D64;
    color: #FFF;
    font-weight: 500;
  }
  body main #contents #box-01__inner__2025v4 .contents .future dl dd ul li {
    padding: 1.3vw;
    border-bottom: solid 0.13vw #535D64;
    color: #f2ab3d;
  }
  body main #contents #box-01__inner__2025v4 .contents .future dl dd ul li:first-child {
    border-top: solid 0.13vw #535D64;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .intro {
    max-width: 146.02vw;
    margin: 0 auto;
    padding: 7.82vw;
  }
  body main #contents #box-01__inner__2026v1 .intro .text-area p {
    margin-bottom: unset;
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .intro .text-area p {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents {
    display: grid;
    gap: 7.82vw;
  }
  body main #contents #box-01__inner__2026v1 .contents > h2 {
    display: flex;
    justify-content: center;
    position: relative;
  }
  body main #contents #box-01__inner__2026v1 .contents > h2 .h2_border {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 100vw;
    height: 2px;
    background-color: #000;
    overflow-x: hidden;
  }
  body main #contents #box-01__inner__2026v1 .contents > h2 .h2_inner {
    border-top: solid 0.78vw #000;
    border-bottom: solid 0.78vw #000;
    z-index: 2;
    padding: 0.5em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #FFF;
    text-align: center;
    color: #000;
    font-size: 22.4px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents > h2 .h2_inner {
    font-size: 4.3vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents > h2 .h2_inner::before, body main #contents #box-01__inner__2026v1 .contents > h2 .h2_inner::after {
    content: "";
    position: absolute;
    width: 4.43vw;
    height: 100%;
    display: block;
    background-color: #FFF;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents > h2 .h2_inner::before {
    left: -4.44vw;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents > h2 .h2_inner::after {
    right: -4.44vw;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents > h2::before {
    content: "";
    width: 5.21vw;
    display: block;
    background-color: #000;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents > h2::after {
    content: "";
    width: 5.21vw;
    display: block;
    background-color: #000;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7.82vw 0;
  }
  body main #contents #box-01__inner__2026v1 .contents .future:not(:last-of-type) {
    margin-bottom: 7.82vw;
  }
  body main #contents #box-01__inner__2026v1 .contents .future .title {
    grid-column: 1/3;
  }
  body main #contents #box-01__inner__2026v1 .contents .future .title h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  body main #contents #box-01__inner__2026v1 .contents .future .title h3 span:nth-child(1) {
    margin-right: 1em;
    color: #4C4948;
    font-size: 28px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future .title h3 span:nth-child(1) {
    font-size: 5.4vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future .title h3 span:nth-child(2) {
    color: #4C4948;
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future .title h3 span:nth-child(2) {
    font-size: 5.4vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future figure {
    grid-column: 1/3;
    width: 100%;
  }
  body main #contents #box-01__inner__2026v1 .contents .future figure img {
    width: 100%;
    margin: 0 auto;
  }
  body main #contents #box-01__inner__2026v1 .contents .future figure img.w80 {
    width: 100%;
  }
  body main #contents #box-01__inner__2026v1 .contents .future figure figcaption {
    width: 100%;
    margin: 0 auto 1em;
    color: #4C4948;
    font-size: 16px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future figure figcaption {
    font-size: 3.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future > p {
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future .summary {
    grid-column: 1/2;
    margin-top: -3.92vw;
  }
  body main #contents #box-01__inner__2026v1 .contents .future .summary ul li {
    width: 100%;
    margin: 0 auto;
  }
  body main #contents #box-01__inner__2026v1 .contents .future .summary ul li dl dt {
    width: 100%;
    padding: 0.5em;
    border-radius: 0.78vw;
    background-color: #50B0E4;
    text-align: center;
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future .summary ul li dl dt {
    font-size: 4.6vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future .summary ul li dl dd {
    padding: 1em;
    color: #4C4948;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future .summary .triangle {
    width: 0;
    height: 0;
    margin: 2.6vw auto;
    border-style: solid;
    border-right: 3.25vw solid transparent;
    border-left: 3.25vw solid transparent;
    border-top: 3.91vw solid #50B0E4;
    border-bottom: 0;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future .summary p {
    width: 100%;
    margin: 0 auto;
    text-align: justify;
    color: #50B0E4;
    font-size: 24px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future .summary p {
    font-size: 4.6vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .intro {
    max-width: 146.02vw;
    margin: 0 auto;
    padding: 7.82vw;
  }
  body main #contents #box-01__inner__2026v2 .intro .text-area p {
    margin-bottom: unset;
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .intro .text-area p {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents {
    display: grid;
    gap: 7.82vw;
  }
  body main #contents #box-01__inner__2026v2 .contents > h2 {
    display: flex;
    justify-content: center;
    position: relative;
  }
  body main #contents #box-01__inner__2026v2 .contents > h2 .h2_border {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 100vw;
    height: 2px;
    background-color: #000;
    overflow-x: hidden;
  }
  body main #contents #box-01__inner__2026v2 .contents > h2 .h2_inner {
    border-top: solid 0.78vw #000;
    border-bottom: solid 0.78vw #000;
    z-index: 2;
    padding: 0.5em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #FFF;
    text-align: center;
    color: #000;
    font-size: 22.4px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents > h2 .h2_inner {
    font-size: 4.3vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents > h2 .h2_inner::before, body main #contents #box-01__inner__2026v2 .contents > h2 .h2_inner::after {
    content: "";
    position: absolute;
    width: 4.43vw;
    height: 100%;
    display: block;
    background-color: #FFF;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents > h2 .h2_inner::before {
    left: -4.44vw;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents > h2 .h2_inner::after {
    right: -4.44vw;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents > h2::before {
    content: "";
    width: 5.21vw;
    display: block;
    background-color: #000;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents > h2::after {
    content: "";
    width: 5.21vw;
    display: block;
    background-color: #000;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents .future {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7.82vw 0;
  }
  body main #contents #box-01__inner__2026v2 .contents .future:not(:last-of-type) {
    margin-bottom: 7.82vw;
  }
  body main #contents #box-01__inner__2026v2 .contents .future .title {
    grid-column: 1/3;
  }
  body main #contents #box-01__inner__2026v2 .contents .future .title h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  body main #contents #box-01__inner__2026v2 .contents .future .title h3 span:nth-child(1) {
    margin-right: 1em;
    color: #4C4948;
    font-size: 28px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents .future .title h3 span:nth-child(1) {
    font-size: 5.4vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents .future .title h3 span:nth-child(2) {
    color: #4C4948;
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents .future .title h3 span:nth-child(2) {
    font-size: 5.4vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents .future figure {
    grid-column: 1/3;
    width: 100%;
  }
  body main #contents #box-01__inner__2026v2 .contents .future figure img {
    width: 100%;
    margin: 0 auto;
  }
  body main #contents #box-01__inner__2026v2 .contents .future figure img.w80 {
    width: 100%;
  }
  body main #contents #box-01__inner__2026v2 .contents .future figure figcaption {
    width: 100%;
    margin: 0 auto 1em;
    color: #4C4948;
    font-size: 16px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents .future figure figcaption {
    font-size: 3.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents .future > p {
    grid-column: 1/3;
  }
  body main #contents #box-01__inner__2026v2 .contents .future > p span {
    color: #4C4948;
  }
  body main #contents #box-01__inner__2026v2 .contents .future > p span.bold {
    font-weight: 700;
  }
  body main #contents #box-01__inner__2026v2 .contents .future > p span.list {
    display: inline-block;
    margin: 0.25em 1em;
  }
}
@media (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents .future h4 {
    text-align: center;
  }
  body main #contents #box-01__inner__2026v2 .contents .future h4 a {
    text-decoration: underline;
    color: navy;
    font-size: 21px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents .future h4 a {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-02 {
    background-color: #E6EBEE;
  }
  body main #contents .box-02__inner {
    display: grid;
    gap: 7.82vw;
  }
  body main #contents .box-02__inner h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .box-02__inner h2 {
    font-size: 5.4vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents {
    display: grid;
    gap: 5.21vw;
  }
  body main #contents .box-02__inner .grid-contents .inbox {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 6;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 6;
    gap: 2.6vw 0;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .maker {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 2;
    gap: 0;
    border-top: 0.65vw solid #000;
    border-bottom: 0.65vw solid #000;
    background-color: #FFF;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .maker .title {
    width: 90%;
    margin: -0.66vw auto 0;
    padding: 0.25em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    clip-path: polygon(0 0, 100% 0, calc(100% - 2.6vw) 100%, 2.6vw 100%);
    color: #FFF;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .maker figure {
    padding: 2.6vw;
    justify-self: center;
    align-self: center;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .maker figure img,
body main #contents .box-02__inner .grid-contents .inbox > a .maker figure svg {
    max-width: 100%;
    width: 100%;
    max-height: 10.43vw;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .maker figure img.x2,
body main #contents .box-02__inner .grid-contents .inbox > a .maker figure svg.x2 {
    max-height: 10.43vw;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .maker figure figcaption {
    text-align: center;
    color: #4C4948;
    font-size: 24px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .maker figure figcaption {
    font-size: 4.6vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .category {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3vw;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .category .category-box {
    padding: 0.65vw;
    border-radius: 0.52vw;
    text-align: center;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .category .category-box {
    font-size: 2.7vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .category .category-box.use {
    background-color: #507936;
  }
}
@media (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .category .category-box.embedded {
    background-color: #4E93A6;
  }
}
@media (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .category .category-box.move {
    background-color: #20689C;
  }
}
@media (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a h3 {
    font-size: 21px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a h3 {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a p {
    margin-bottom: unset;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a p {
    font-size: 3.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .link span {
    display: flex;
    align-items: center;
    text-decoration: underline;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .link span {
    font-size: 3.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .link span::before {
    content: "▶";
  }
}
@media (max-width: 767px) {
  body main #contents .box-03 {
    padding: 15.64vw 7.82vw 7.82vw;
  }
  body main #contents .box-03__inner {
    background-color: #F7E5EA;
    filter: drop-shadow(1.3vw 1.3vw 2.6vw rgba(0, 0, 0, 0.2));
  }
  body main #contents .box-03__inner .provide {
    display: grid;
    gap: 5.21vw;
  }
  body main #contents .box-03__inner .provide > h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .box-03__inner .provide > h2 {
    font-size: 5.4vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-03__inner .provide > p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  body main #contents .box-03__inner .provide .grid-contents {
    display: grid;
    justify-content: center;
    gap: 5.21vw;
  }
  body main #contents .box-03__inner .provide .grid-contents .inbox {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 3;
  }
  body main #contents .box-03__inner .provide .grid-contents .inbox h3 {
    grid-template-rows: subgrid;
  }
  body main #contents .box-03__inner .provide .grid-contents .inbox h3 figure {
    display: flex;
    justify-content: center;
  }
  body main #contents .box-03__inner .provide .grid-contents .inbox h3 figure img {
    width: 60%;
  }
}
@media (max-width: 767px) {
  body main #contents .box-04 {
    padding: 7.82vw 7.82vw 15.64vw;
  }
  body main #contents .box-04__inner {
    filter: drop-shadow(1.3vw 1.3vw 2.6vw rgba(0, 0, 0, 0.2));
  }
  body main #contents .box-04__inner .bg-wh {
    padding: 1.3vw;
    background-color: #FFF;
    clip-path: polygon(5.21vw 0, 100% 0, 100% 100%, 0 100%, 0 5.21vw);
  }
  body main #contents .box-04__inner .bg-wh .topics {
    padding: 7.82vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(39.11vw, 1fr));
    gap: 5.21vw;
    background-color: #535D64;
    clip-path: polygon(5.21vw 0, 100% 0, 100% 100%, 0 100%, 0 5.21vw);
  }
  body main #contents .box-04__inner .bg-wh .topics__inner {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 4;
  }
  body main #contents .box-04__inner .bg-wh .topics__inner h3 {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 2;
    color: #FFF;
  }
  body main #contents .box-04__inner .bg-wh .topics__inner h3 .first-line {
    padding: 0.5em;
    border-top: 0.13vw solid #FFF;
    border-bottom: 0.13vw solid #FFF;
    text-align: center;
    color: #FFF;
  }
  body main #contents .box-04__inner .bg-wh .topics__inner h3 .second-line {
    text-align: center;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    align-self: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .topics__inner h3 .second-line {
    font-size: 4.6vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .topics__inner p {
    margin-bottom: unset;
    color: #FFF;
  }
}
@media (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .topics .link a {
    display: flex;
    align-items: center;
    text-decoration: underline;
    color: #FFF;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .topics .link a {
    font-size: 3.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .topics .link a::before {
    content: "▶";
  }
}
@media (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .next {
    padding: 7.82vw;
    border-top: 1.3vw solid #FFF;
    display: grid;
    gap: 2.6vw;
    background-color: #535D64;
  }
  body main #contents .box-04__inner .bg-wh .next h2 {
    display: flex;
  }
  body main #contents .box-04__inner .bg-wh .next h2 .h2_inner {
    width: 100%;
    padding: 0.5em 1em;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: left;
    color: #535D64;
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .next h2 .h2_inner {
    font-size: 5.4vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .next h2::after {
    content: "";
    width: 5.21vw;
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .next h3 {
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .next h3 {
    font-size: 4.1vw;
  }
}
@media (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .next .text-area p {
    color: #FFF;
  }
  body main #contents .box-04__inner .bg-wh .next .text-area p.notice {
    color: #FFF;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .next .text-area p.notice {
    font-size: 2.3vw;
  }
}
@media (min-width: 768px) {
  body main #contents {
    /* 方眼紙模様に必須のスタイル */
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
    overflow-x: hidden;
  }
  body main #contents * {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents * {
    font-size: 3.5vw;
  }
}
@media (min-width: 768px) {
  body main #contents p {
    color: #4C4948;
    line-height: 1.75;
  }
  body main #contents p:not(:last-child) {
    margin-bottom: 1em;
  }
}
@media (min-width: 768px) {
  body main #contents .box-01__inner .contents,
body main #contents .box-02__inner,
body main #contents .box-03__inner,
body main #contents .box-04__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 120px 60px;
  }
}
@media (min-width: 768px) {
  body main #contents .box-01__inner .contents {
    padding-top: unset;
  }
}
@media (min-width: 768px) {
  body main #contents .box-04__inner {
    padding: unset;
  }
}
@media (min-width: 768px) {
  body main #contents #change-btns__02 .change-btns__inner {
    padding-top: unset;
  }
}
@media (min-width: 768px) {
  body main #contents .change-btns__inner {
    padding: 60px 60px;
    text-align: center;
  }
  body main #contents .change-btns__inner h2 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .change-btns__inner h2 {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents .change-btns__inner ul {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  body main #contents .change-btns__inner ul li {
    padding: 1em;
    border: solid 1px #000;
    display: inline-block;
    cursor: pointer;
  }
  body main #contents .change-btns__inner ul li._active {
    border-width: 2px;
    background-color: #E6EBEE;
  }
}
@media (min-width: 768px) {
  body main #contents .change-btns__inner p {
    margin-top: 40px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  body main #contents .box-01 {
    position: relative;
    min-height: 1px;
  }
  body main #contents .box-01__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
  }
  body main #contents .box-01__inner._active {
    transform: translateX(0);
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
    position: relative;
  }
  body main #contents .box-01__inner._slide-out {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 0;
  }
  body main #contents .box-01__inner > h2 {
    display: flex;
  }
  body main #contents .box-01__inner > h2 .h2_inner {
    width: 100%;
    padding: 0.5em 1em;
    padding-left: calc(1em + 80px);
    background-color: #000;
    text-align: center;
    color: #FFF;
    font-size: 32px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-01__inner > h2 .h2_inner {
    font-size: 6.2vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-01__inner > h2::after {
    content: "";
    width: 80px;
    display: block;
    background-color: #000;
    clip-path: polygon(0 0, 100% 0, 0 100%, 0% 100%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .intro {
    display: block;
  }
  body main #contents #box-01__inner__2025v2 .intro .text-area {
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 60px;
  }
  body main #contents #box-01__inner__2025v2 .intro .text-area p {
    margin-bottom: unset;
    font-size: 21px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .intro .text-area p {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents {
    display: grid;
    gap: 60px;
  }
  body main #contents #box-01__inner__2025v2 .contents > h2 {
    display: flex;
    justify-content: center;
    position: relative;
  }
  body main #contents #box-01__inner__2025v2 .contents > h2 .h2_border {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 100vw;
    height: 2px;
    background-color: #000;
    overflow-x: hidden;
  }
  body main #contents #box-01__inner__2025v2 .contents > h2 .h2_inner {
    z-index: 2;
    padding: 0.5em;
    background-color: #000;
    text-align: center;
    color: #FFF;
    font-size: 28px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents > h2 .h2_inner {
    font-size: 5.4vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents > h2::before {
    content: "";
    width: 40px;
    display: block;
    background-color: #000;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents > h2::after {
    content: "";
    width: 40px;
    display: block;
    background-color: #000;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox {
    padding: 20px;
    grid-template-rows: subgrid;
    grid-template-columns: max-content 1fr;
    display: grid;
    grid-row: span 2;
    gap: 10px 0;
    clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
  }
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox figure {
    grid-row: 1/2;
    grid-column: 1/2;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox figure img {
    height: 60px;
  }
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox h3 {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox h3 .first-line {
    padding-bottom: 10px;
    border-bottom: 1px solid #FFF;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox h3 .first-line {
    font-size: 3.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox h3 .second-line {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #FFF;
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox h3 .second-line {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox p {
    grid-row: 2/3;
    grid-column: 1/3;
    color: #FFF;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox p {
    font-size: 3.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox.inbox-01 {
    background-color: #507936;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox.inbox-02 {
    background-color: #4E93A6;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents .grid-contents .inbox.inbox-03 {
    background-color: #20689C;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents .column {
    padding: 40px;
    display: grid;
    gap: 20px;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: max-content 1fr;
    background-color: #FFF;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
  }
  body main #contents #box-01__inner__2025v2 .contents .column h3 {
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #507936;
    clip-path: polygon(100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 0);
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  body main #contents #box-01__inner__2025v2 .contents .column h3 {
    grid-row: unset;
    grid-column: unset;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents .column h3 .first-line {
    color: #FFF;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .column h3 .first-line {
    font-size: 2.7vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents .column h3 .second-line {
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .column h3 .second-line {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents .column .text-area {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents .future {
    padding: 40px;
    display: grid;
    gap: 20px;
    background-color: #FFF;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
  }
  body main #contents #box-01__inner__2025v2 .contents .future h2 {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: auto 1fr 1fr;
    align-items: center;
  }
  body main #contents #box-01__inner__2025v2 .contents .future h2::before {
    grid-row: 1/3;
    grid-column: 1/2;
    content: "";
    width: 10px;
    height: 100%;
    margin-right: 20px;
    display: block;
    background-color: #A6AFB5;
  }
  body main #contents #box-01__inner__2025v2 .contents .future h2 > figure {
    grid-template-rows: subgrid;
    grid-template-columns: 1fr auto;
    display: grid;
    grid-row: span 2;
    gap: 40px;
    align-items: center;
  }
  body main #contents #box-01__inner__2025v2 .contents .future h2 > figure img:nth-child(1) {
    grid-row: 1/3;
    grid-column: 1/2;
    width: 100%;
  }
  body main #contents #box-01__inner__2025v2 .contents .future h2 > figure img:nth-child(2) {
    grid-row: 1/3;
    grid-column: 2/3;
    width: 40px;
  }
  body main #contents #box-01__inner__2025v2 .contents .future .text {
    grid-row: 1/2;
    grid-column: 3/4;
    justify-self: center;
    align-self: center;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v2 .contents .future .text {
    font-size: 2.7vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v2 .contents .future .maker {
    grid-row: 2/3;
    grid-column: 3/4;
  }
  body main #contents #box-01__inner__2025v2 .contents .future .maker figure {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body main #contents #box-01__inner__2025v2 .contents .future .maker figure img {
    width: 60%;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .intro {
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 60px;
  }
  body main #contents #box-01__inner__2025v3 .intro figure {
    margin-bottom: 60px;
  }
  body main #contents #box-01__inner__2025v3 .intro figure img {
    margin: 0 auto;
  }
  body main #contents #box-01__inner__2025v3 .intro .text-area p {
    margin-bottom: unset;
    font-size: 21px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .intro .text-area p {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents {
    display: grid;
    gap: 60px;
  }
  body main #contents #box-01__inner__2025v3 .contents > h2 {
    display: flex;
    justify-content: center;
    position: relative;
  }
  body main #contents #box-01__inner__2025v3 .contents > h2 .h2_border {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 100vw;
    height: 2px;
    background-color: #000;
    overflow-x: hidden;
  }
  body main #contents #box-01__inner__2025v3 .contents > h2 .h2_inner {
    z-index: 2;
    padding: 0.5em;
    background-color: #000;
    text-align: center;
    color: #FFF;
    font-size: 28px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents > h2 .h2_inner {
    font-size: 5.4vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents > h2::before {
    content: "";
    width: 40px;
    display: block;
    background-color: #000;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents > h2::after {
    content: "";
    width: 40px;
    display: block;
    background-color: #000;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 0;
  }
  body main #contents #box-01__inner__2025v3 .contents__intro .title {
    grid-column: 1/3;
  }
  body main #contents #box-01__inner__2025v3 .contents__intro .title h3 {
    text-align: center;
    color: #4C4948;
    font-size: 28px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .title h3 {
    font-size: 5.4vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .title h4 {
    text-align: center;
    color: #4C4948;
    font-size: 21px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .title h4 {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics {
    grid-column: 1/3;
    grid-template-columns: subgrid;
    display: grid;
  }
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5 {
    padding: 20px;
    border-left: 2px solid #000;
  }
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5:not(:first-child) {
    border-right: 2px solid #000;
  }
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5 .first-line {
    text-align: center;
    color: #4C4948;
  }
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5 .first-line span {
    color: #4C4948;
    font-size: 80px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5 .first-line span {
    font-size: 15.6vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5 .second-line {
    text-align: center;
    color: #4C4948;
    font-size: 21px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents__intro .data-analytics h5 .second-line {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents__intro p {
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents .column {
    padding: 40px;
    display: grid;
    gap: 20px;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: max-content 1fr;
    background-color: #FFF;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
  }
  body main #contents #box-01__inner__2025v3 .contents .column h3 {
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 20px;
    background-color: #000;
    clip-path: polygon(100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 0);
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents .column h3 {
    font-size: 4.1vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  body main #contents #box-01__inner__2025v3 .contents .column h3 {
    grid-row: unset;
    grid-column: unset;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents .column .text-area {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents .future {
    padding: 40px;
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 20px;
    background-color: #FFF;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
  }
  body main #contents #box-01__inner__2025v3 .contents .future h3 {
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 20px;
    background-color: #000;
    clip-path: polygon(100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 0);
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents .future h3 {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents .future h4 {
    grid-row: 2/3;
    grid-column: 1/3;
    font-size: 21px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v3 .contents .future h4 {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents .future p {
    grid-row: 3/4;
    grid-column: 1/3;
    margin-bottom: unset;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v3 .contents .future figure {
    grid-row: 4/5;
    grid-column: 1/3;
    width: 100%;
  }
  body main #contents #box-01__inner__2025v3 .contents .future figure img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v4 .intro {
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 60px;
  }
  body main #contents #box-01__inner__2025v4 .intro .text-area p {
    margin-bottom: unset;
    font-size: 21px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .intro .text-area p {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v4 .contents {
    display: grid;
    gap: 60px;
  }
  body main #contents #box-01__inner__2025v4 .contents > h2 {
    display: flex;
    justify-content: center;
    position: relative;
  }
  body main #contents #box-01__inner__2025v4 .contents > h2 .h2_border {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 100vw;
    height: 2px;
    background-color: #000;
    overflow-x: hidden;
  }
  body main #contents #box-01__inner__2025v4 .contents > h2 .h2_inner {
    z-index: 2;
    padding: 0.5em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    text-align: center;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents > h2 .h2_inner {
    font-size: 5.4vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v4 .contents > h2 .h2_inner.__02 {
    background-color: #FFF;
    border-top: solid 6px #000;
    border-bottom: solid 6px #000;
    border-right: solid 6px #000;
    color: #000;
    font-size: 22.4px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents > h2 .h2_inner.__02 {
    font-size: 4.3vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v4 .contents > h2::before {
    content: "";
    width: 40px;
    display: block;
    background-color: #000;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v4 .contents > h2::after {
    content: "";
    width: 40px;
    display: block;
    background-color: #000;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v4 .contents__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 0;
  }
  body main #contents #box-01__inner__2025v4 .contents__intro .title {
    grid-column: 1/3;
  }
  body main #contents #box-01__inner__2025v4 .contents__intro .title h3 {
    text-align: center;
    color: #4C4948;
    font-size: 28px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents__intro .title h3 {
    font-size: 5.4vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v4 .contents__intro p {
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v4 .contents .future {
    padding: 40px;
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 20px;
    background-color: #FFF;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
  }
  body main #contents #box-01__inner__2025v4 .contents .future h3 {
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 20px;
    background-color: #535D64;
    clip-path: polygon(100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 0);
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents .future h3 {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v4 .contents .future h4 {
    grid-row: 2/3;
    grid-column: 1/3;
    color: #535D64;
    font-size: 21px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2025v4 .contents .future h4 {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v4 .contents .future p {
    grid-row: 3/4;
    grid-column: 1/3;
    margin-bottom: unset;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v4 .contents .future figure {
    grid-row: 4/5;
    grid-column: 1/3;
    width: 100%;
  }
  body main #contents #box-01__inner__2025v4 .contents .future figure img {
    width: 100%;
  }
  body main #contents #box-01__inner__2025v4 .contents .future figure.edgematrix {
    background-color: #ebf6f9;
    padding: 40px;
  }
  body main #contents #box-01__inner__2025v4 .contents .future figure.edgematrix img:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2025v4 .contents .future dl {
    grid-row: 5/6;
    grid-column: 1/3;
    width: 100%;
    display: flex;
    gap: 10px;
  }
  body main #contents #box-01__inner__2025v4 .contents .future dl dt {
    width: 20%;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #535D64;
    color: #FFF;
    font-weight: 500;
  }
  body main #contents #box-01__inner__2025v4 .contents .future dl dd {
    width: 80%;
    height: 100%;
  }
  body main #contents #box-01__inner__2025v4 .contents .future dl dd ul li {
    padding: 10px;
    border-bottom: solid 1px #535D64;
    color: #f2ab3d;
  }
  body main #contents #box-01__inner__2025v4 .contents .future dl dd ul li:first-child {
    border-top: solid 1px #535D64;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .intro {
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px;
  }
  body main #contents #box-01__inner__2026v1 .intro .text-area p {
    margin-bottom: unset;
    font-size: 21px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .intro .text-area p {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents {
    display: grid;
    gap: 60px;
  }
  body main #contents #box-01__inner__2026v1 .contents > h2 {
    display: flex;
    justify-content: center;
    position: relative;
  }
  body main #contents #box-01__inner__2026v1 .contents > h2 .h2_border {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 100vw;
    height: 2px;
    background-color: #000;
    overflow-x: hidden;
  }
  body main #contents #box-01__inner__2026v1 .contents > h2 .h2_inner {
    border-top: solid 6px #000;
    border-bottom: solid 6px #000;
    z-index: 2;
    padding: 0.5em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #FFF;
    text-align: center;
    color: #000;
    font-size: 22.4px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents > h2 .h2_inner {
    font-size: 4.3vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents > h2 .h2_inner::before, body main #contents #box-01__inner__2026v1 .contents > h2 .h2_inner::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 100%;
    display: block;
    background-color: #FFF;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents > h2 .h2_inner::before {
    left: -34px;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents > h2 .h2_inner::after {
    right: -34px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents > h2::before {
    content: "";
    width: 40px;
    display: block;
    background-color: #000;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents > h2::after {
    content: "";
    width: 40px;
    display: block;
    background-color: #000;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents .future {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px 0;
  }
  body main #contents #box-01__inner__2026v1 .contents .future:not(:last-of-type) {
    margin-bottom: 60px;
  }
  body main #contents #box-01__inner__2026v1 .contents .future .title {
    grid-column: 1/3;
  }
  body main #contents #box-01__inner__2026v1 .contents .future .title h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  body main #contents #box-01__inner__2026v1 .contents .future .title h3 span:nth-child(1) {
    margin-right: 1em;
    color: #4C4948;
    font-size: 28px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future .title h3 span:nth-child(1) {
    font-size: 5.4vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents .future .title h3 span:nth-child(2) {
    color: #4C4948;
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future .title h3 span:nth-child(2) {
    font-size: 5.4vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents .future figure {
    grid-column: 1/3;
    width: 100%;
  }
  body main #contents #box-01__inner__2026v1 .contents .future figure img {
    width: 60%;
    margin: 0 auto;
  }
  body main #contents #box-01__inner__2026v1 .contents .future figure img.w80 {
    width: 80%;
  }
  body main #contents #box-01__inner__2026v1 .contents .future figure figcaption {
    width: 60%;
    margin: 0 auto 1em;
    color: #4C4948;
    font-size: 16px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future figure figcaption {
    font-size: 3.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents .future > p {
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents .future .summary {
    grid-column: 1/2;
    margin-top: -30px;
  }
  body main #contents #box-01__inner__2026v1 .contents .future .summary ul li {
    width: 50%;
    margin: 0 auto;
  }
  body main #contents #box-01__inner__2026v1 .contents .future .summary ul li dl dt {
    width: 100%;
    padding: 0.5em;
    border-radius: 6px;
    background-color: #50B0E4;
    text-align: center;
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future .summary ul li dl dt {
    font-size: 4.6vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents .future .summary ul li dl dd {
    padding: 1em;
    color: #4C4948;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents .future .summary .triangle {
    width: 0;
    height: 0;
    margin: 20px auto;
    border-style: solid;
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
    border-top: 30px solid #50B0E4;
    border-bottom: 0;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v1 .contents .future .summary p {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    color: #50B0E4;
    font-size: 24px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v1 .contents .future .summary p {
    font-size: 4.6vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v2 .intro {
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px;
  }
  body main #contents #box-01__inner__2026v2 .intro .text-area p {
    margin-bottom: unset;
    font-size: 21px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .intro .text-area p {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v2 .contents {
    display: grid;
    gap: 60px;
  }
  body main #contents #box-01__inner__2026v2 .contents > h2 {
    display: flex;
    justify-content: center;
    position: relative;
  }
  body main #contents #box-01__inner__2026v2 .contents > h2 .h2_border {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 100vw;
    height: 2px;
    background-color: #000;
    overflow-x: hidden;
  }
  body main #contents #box-01__inner__2026v2 .contents > h2 .h2_inner {
    border-top: solid 6px #000;
    border-bottom: solid 6px #000;
    z-index: 2;
    padding: 0.5em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #FFF;
    text-align: center;
    color: #000;
    font-size: 22.4px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents > h2 .h2_inner {
    font-size: 4.3vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v2 .contents > h2 .h2_inner::before, body main #contents #box-01__inner__2026v2 .contents > h2 .h2_inner::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 100%;
    display: block;
    background-color: #FFF;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v2 .contents > h2 .h2_inner::before {
    left: -34px;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v2 .contents > h2 .h2_inner::after {
    right: -34px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v2 .contents > h2::before {
    content: "";
    width: 40px;
    display: block;
    background-color: #000;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v2 .contents > h2::after {
    content: "";
    width: 40px;
    display: block;
    background-color: #000;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v2 .contents .future {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px 0;
  }
  body main #contents #box-01__inner__2026v2 .contents .future:not(:last-of-type) {
    margin-bottom: 60px;
  }
  body main #contents #box-01__inner__2026v2 .contents .future .title {
    grid-column: 1/3;
  }
  body main #contents #box-01__inner__2026v2 .contents .future .title h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  body main #contents #box-01__inner__2026v2 .contents .future .title h3 span:nth-child(1) {
    margin-right: 1em;
    color: #4C4948;
    font-size: 28px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents .future .title h3 span:nth-child(1) {
    font-size: 5.4vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v2 .contents .future .title h3 span:nth-child(2) {
    color: #4C4948;
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents .future .title h3 span:nth-child(2) {
    font-size: 5.4vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v2 .contents .future figure {
    grid-column: 1/3;
    width: 100%;
  }
  body main #contents #box-01__inner__2026v2 .contents .future figure img {
    width: 60%;
    margin: 0 auto;
  }
  body main #contents #box-01__inner__2026v2 .contents .future figure img.w80 {
    width: 80%;
  }
  body main #contents #box-01__inner__2026v2 .contents .future figure figcaption {
    width: 60%;
    margin: 0 auto 1em;
    color: #4C4948;
    font-size: 16px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents .future figure figcaption {
    font-size: 3.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v2 .contents .future > p {
    grid-column: 1/3;
  }
  body main #contents #box-01__inner__2026v2 .contents .future > p span {
    color: #4C4948;
  }
  body main #contents #box-01__inner__2026v2 .contents .future > p span.bold {
    font-weight: 700;
  }
  body main #contents #box-01__inner__2026v2 .contents .future > p span.list {
    display: inline-block;
    margin: 0.25em 1em;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v2 .contents .future h4 {
    text-align: center;
  }
  body main #contents #box-01__inner__2026v2 .contents .future h4 a {
    text-decoration: underline;
    color: navy;
    font-size: 21px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents #box-01__inner__2026v2 .contents .future h4 a {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents #box-01__inner__2026v2 .contents .future h4 a:hover {
    opacity: 0.6;
  }
}
@media (min-width: 768px) {
  body main #contents .box-02 {
    background-color: #E6EBEE;
  }
  body main #contents .box-02__inner {
    display: grid;
    gap: 60px;
  }
  body main #contents .box-02__inner h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-02__inner h2 {
    font-size: 5.4vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-02__inner h2::before, body main #contents .box-02__inner h2::after {
    content: "◆ ◆ ◆";
    font-size: 50%;
  }
}
@media (min-width: 768px) {
  body main #contents .box-02__inner h2::before {
    margin-right: 20px;
  }
}
@media (min-width: 768px) {
  body main #contents .box-02__inner h2::after {
    margin-left: 20px;
  }
}
@media (min-width: 768px) {
  body main #contents .box-02__inner .grid-contents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px 20px;
  }
  body main #contents .box-02__inner .grid-contents .inbox {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 6;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 6;
    gap: 20px 0;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a:hover {
    opacity: 0.6;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .maker {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 2;
    gap: 0;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    background-color: #FFF;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .maker .title {
    width: 90%;
    margin: -5px auto 0;
    padding: 0.25em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 20px 100%);
    color: #FFF;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .maker figure {
    padding: 20px;
    justify-self: center;
    align-self: center;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .maker figure img,
body main #contents .box-02__inner .grid-contents .inbox > a .maker figure svg {
    max-width: 100%;
    width: 100%;
    max-height: 40px;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .maker figure img.x2,
body main #contents .box-02__inner .grid-contents .inbox > a .maker figure svg.x2 {
    max-height: 80px;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .maker figure figcaption {
    text-align: center;
    color: #4C4948;
    font-size: 24px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .maker figure figcaption {
    font-size: 4.6vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .category {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  body main #contents .box-02__inner .grid-contents .inbox > a .category .category-box {
    padding: 5px;
    border-radius: 4px;
    text-align: center;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .category .category-box {
    font-size: 2.7vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .category .category-box.use {
    background-color: #507936;
  }
}
@media (min-width: 768px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .category .category-box.embedded {
    background-color: #4E93A6;
  }
}
@media (min-width: 768px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .category .category-box.move {
    background-color: #20689C;
  }
}
@media (min-width: 768px) {
  body main #contents .box-02__inner .grid-contents .inbox > a h3 {
    font-size: 21px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a h3 {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-02__inner .grid-contents .inbox > a p {
    margin-bottom: unset;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a p {
    font-size: 3.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .link span {
    display: flex;
    align-items: center;
    text-decoration: underline;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .link span {
    font-size: 3.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-02__inner .grid-contents .inbox > a .link span::before {
    content: "▶";
  }
}
@media (min-width: 768px) {
  body main #contents .box-03 {
    padding: 120px 60px 60px;
  }
  body main #contents .box-03__inner {
    background-color: #F7E5EA;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
  }
  body main #contents .box-03__inner .provide {
    display: grid;
    gap: 40px;
  }
  body main #contents .box-03__inner .provide > h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-03__inner .provide > h2 {
    font-size: 5.4vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-03__inner .provide > h2::before {
    content: "[";
    display: block;
    padding-right: 20px;
    font-size: 42px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-03__inner .provide > h2::before {
    font-size: 8.2vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-03__inner .provide > h2::after {
    content: "]";
    display: block;
    padding-left: 20px;
    font-size: 42px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-03__inner .provide > h2::after {
    font-size: 8.2vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-03__inner .provide > p {
    text-align: center;
  }
}
@media (min-width: 768px) {
  body main #contents .box-03__inner .provide .grid-contents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
    justify-content: center;
    gap: 20px 40px;
  }
  body main #contents .box-03__inner .provide .grid-contents .inbox {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 3;
  }
  body main #contents .box-03__inner .provide .grid-contents .inbox h3 {
    grid-template-rows: subgrid;
  }
  body main #contents .box-03__inner .provide .grid-contents .inbox h3 figure img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  body main #contents .box-04 {
    padding: 60px 60px 120px;
  }
  body main #contents .box-04__inner {
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
  }
  body main #contents .box-04__inner .bg-wh {
    padding: 10px;
    background-color: #FFF;
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
  }
  body main #contents .box-04__inner .bg-wh .topics {
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 40px;
    background-color: #535D64;
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
  }
  body main #contents .box-04__inner .bg-wh .topics__inner {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 4;
  }
  body main #contents .box-04__inner .bg-wh .topics__inner h3 {
    grid-template-rows: subgrid;
    display: grid;
    grid-row: span 2;
    color: #FFF;
  }
  body main #contents .box-04__inner .bg-wh .topics__inner h3 .first-line {
    padding: 0.5em;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    text-align: center;
    color: #FFF;
  }
  body main #contents .box-04__inner .bg-wh .topics__inner h3 .second-line {
    text-align: center;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    align-self: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .topics__inner h3 .second-line {
    font-size: 4.6vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-04__inner .bg-wh .topics__inner p {
    margin-bottom: unset;
    color: #FFF;
  }
}
@media (min-width: 768px) {
  body main #contents .box-04__inner .bg-wh .topics .link a {
    display: flex;
    align-items: center;
    text-decoration: underline;
    color: #FFF;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .topics .link a {
    font-size: 3.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-04__inner .bg-wh .topics .link a::before {
    content: "▶";
  }
}
@media (min-width: 768px) {
  body main #contents .box-04__inner .bg-wh .next {
    padding: 60px;
    border-top: 10px solid #FFF;
    display: grid;
    gap: 20px;
    background-color: #535D64;
  }
  body main #contents .box-04__inner .bg-wh .next h2 {
    display: flex;
  }
  body main #contents .box-04__inner .bg-wh .next h2 .h2_inner {
    width: calc(50% - 2em);
    padding: 0.5em 1em;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: left;
    color: #535D64;
    font-size: 28px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .next h2 .h2_inner {
    font-size: 5.4vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-04__inner .bg-wh .next h2::after {
    content: "";
    width: 40px;
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
}
@media (min-width: 768px) {
  body main #contents .box-04__inner .bg-wh .next h3 {
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .next h3 {
    font-size: 4.1vw;
  }
}
@media (min-width: 768px) {
  body main #contents .box-04__inner .bg-wh .next .text-area p {
    color: #FFF;
  }
  body main #contents .box-04__inner .bg-wh .next .text-area p.notice {
    color: #FFF;
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  body main #contents .box-04__inner .bg-wh .next .text-area p.notice {
    font-size: 2.3vw;
  }
}

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