@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/Noto+Sans+JP.ttf") format("ttf");
  display: swap;
}
* {
  margin: 0;
  padding: 0;
  line-height: calc(0.25rem + 1em + 0.25rem);
}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}

:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select), :where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

h1 {
  font-size: 2em;
}

:where(ul, ol) {
  list-style-position: inside;
}

:where(ul, ol)[role=list] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button, :where(input[type=file])::file-selector-button {
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    -webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset]), :where(input[type=file])::-webkit-file-upload-button, :where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

/* アニメーション
---------------------------------------------------------------- */
.is-anime {
  /* スクロール判定でアニメーションする場合に付ける */
}

.now-anime {
  /* ページ読み込み時すぐにアニメーションする場合に付ける */
}

.js-anime {
  opacity: 0;
  /* jsで自動で付く */
}

.js-active {
  /* jsで自動で付く */
}

/*========= フェードイン ===============*/
.fadeIn.now-anime,
.fadeIn.js-active {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*========= フェードアップ ===============*/
.fadeUp.now-anime,
.fadeUp.js-active {
  -webkit-animation-name: fadeUp;
  animation-name: fadeUp;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime.now-anime,
.leftAnime.js-active {
  -webkit-animation-name: slideTextX100;
  animation-name: slideTextX100;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.leftAnime.now-anime .slide-in_inner,
.leftAnime.js-active .slide-in_inner {
  -webkit-animation-name: slideTextX-100;
  animation-name: slideTextX-100;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/* 上下のアニメーション*/
.downAnime.now-anime,
.downAnime.js-active {
  -webkit-animation-name: slideTextY100;
  animation-name: slideTextY100;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.downAnime.now-anime .slide-in_inner,
.downAnime.js-active .slide-in_inner {
  -webkit-animation-name: slideTextY-100;
  animation-name: slideTextY-100;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes slideTextY100 {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextY100 {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
@-webkit-keyframes slideTextY-100 {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextY-100 {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
/*========= ブラー ===============*/
.blur.now-anime,
.blur.is-anime {
  -webkit-animation-name: blurAnime;
  animation-name: blurAnime;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.js-active.de-0,
.now-anime.de-0 {
  -webkit-animation-delay: 0;
  animation-delay: 0;
}
.js-active.de-100,
.now-anime.de-100 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.js-active.de-200,
.now-anime.de-200 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.js-active.de-300,
.now-anime.de-300 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.js-active.de-400,
.now-anime.de-400 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.js-active.de-500,
.now-anime.de-500 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.js-active.de-600,
.now-anime.de-600 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.js-active.de-700,
.now-anime.de-700 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.js-active.de-800,
.now-anime.de-800 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.js-active.de-900,
.now-anime.de-900 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.js-active.de-1000,
.now-anime.de-1000 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.js-active.de-1500,
.now-anime.de-1500 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.js-active.du-100,
.now-anime.du-100 {
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
}
.js-active.du-200,
.now-anime.du-200 {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
.js-active.du-300,
.now-anime.du-300 {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
.js-active.du-400,
.now-anime.du-400 {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.js-active.du-500,
.now-anime.du-500 {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.js-active.du-600,
.now-anime.du-600 {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}
.js-active.du-700,
.now-anime.du-700 {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}
.js-active.du-800,
.now-anime.du-800 {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.js-active.du-900,
.now-anime.du-900 {
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
.js-active.du-1000,
.now-anime.du-1000 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.js-active.du-1500,
.now-anime.du-1500 {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

/* common
---------------------------------------------------------------- */
@media only screen and (min-width: 769px) {
  .only_sp, .only-sp, .onlySP {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .only_pc, .only-pc, .onlyPC {
    display: none !important;
  }
}
html {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
    width: 100vw;
  }
}

body {
  background: #fff;
  color: #656565;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  min-width: 1044px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Noto Sans JP", Sans-Serif;
}
@media only screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
}

* {
  font: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

b {
  font-weight: bold;
  text-decoration: none;
}

header ul,
footer ul {
  list-style: none;
}

section {
  position: relative;
}

picture {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

em, b, strong {
  text-decoration: none;
  font-style: normal;
  font-weight: bold;
}

address {
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
}

main a {
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

main a:hover {
  opacity: 0.8;
}

mark {
  background: transparent;
}

a[href^="tel:"] {
  color: inherit;
}
@media only screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
  }
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.nowrap {
  white-space: nowrap;
}

/* main
---------------------------------------------------------------- */
.main {
  width: 100%;
  height: 100%;
  margin: 0;
}

.inner {
  max-width: 100%;
  width: 1044px;
  height: 100%;
  padding: 0 10px;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding: 0 5vw;
  }
}

.inner_w100 {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: auto;
  position: relative;
}

.c_red {
  color: #c52817;
}

.ttl_type_01 {
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow: hidden;
}
.ttl_type_01 .ttl_en {
  display: block;
  font-size: 23px;
  margin-bottom: 1em;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .ttl_type_01 .ttl_en {
    font-size: 16px;
  }
}
.ttl_type_01 .ttl_main {
  display: block;
  font-size: 44px;
  margin-bottom: 0.8em;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .ttl_type_01 .ttl_main {
    font-size: 6.9vw;
  }
}

.ttl_type_02,
.ttl_type_03 {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
.ttl_type_02 .ttl_en,
.ttl_type_03 .ttl_en {
  display: block;
  font-size: 16px;
  margin-bottom: 1em;
  line-height: 1.2;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .ttl_type_02 .ttl_en,
  .ttl_type_03 .ttl_en {
    font-size: 16px;
  }
}
.ttl_type_02 .ttl_main,
.ttl_type_03 .ttl_main {
  display: block;
  font-size: 60px;
  margin-bottom: 0.8em;
  line-height: 1.4;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .ttl_type_02 .ttl_main,
  .ttl_type_03 .ttl_main {
    font-size: 8vw;
  }
}

.ttl_type_03 .ttl_en {
  font-weight: 500;
  color: #5E81C9;
}

.page_color_o .ttl_type_03 .ttl_en {
  color: #FF983F;
}
.page_color_o .ttl_type_02 .ttl_en {
  color: #FF983F;
}

.ttl_type_04 {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .ttl_type_04 {
    font-size: 8vw;
  }
}

.sec_lead_type_01 {
  max-width: 680px;
  margin: 1em auto;
  line-height: 1.68;
  margin-bottom: 3em;
}

.ttl_wrap_col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .ttl_wrap_col2 {
    display: block;
  }
}
.ttl_wrap_col2 > .col1 {
  width: 430px;
}
@media only screen and (max-width: 768px) {
  .ttl_wrap_col2 > .col1 {
    width: 100%;
  }
}
.ttl_wrap_col2 > .col2 {
  width: calc(100% - 430px);
}
@media only screen and (max-width: 768px) {
  .ttl_wrap_col2 > .col2 {
    width: 100%;
  }
}

.ttl_type_round_01 {
  background: #A4A4A5;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  line-height: 1.2;
  padding: 0.5em 1em;
  border-radius: 50px;
}
@media only screen and (max-width: 768px) {
  .ttl_type_round_01 {
    font-size: 16px;
  }
}

.sub_ttl_type_01 {
  font-size: 40px;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .sub_ttl_type_01 {
    font-size: 5.8vw;
  }
}

.bg_left_w,
.bg_right_w {
  display: block;
  width: calc(512px + 50% - 310px);
  height: 100%;
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 20px;
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
}
@media only screen and (max-width: 768px) {
  .bg_left_w,
  .bg_right_w {
    border-radius: 10px;
    width: 150vw;
  }
}

.bg_left_w {
  width: calc(512px + 50% - 310px);
  right: auto;
  left: -120px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .bg_left_w {
    right: 0;
  }
}

.bg_right_w {
  width: calc(512px + 50% - 235px);
  left: auto;
  right: -120px;
}
@media only screen and (max-width: 768px) {
  .bg_right_w {
    left: 0;
  }
}

.col2_grid_pc,
.col2_grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.col2_grid_pc > .col1,
.col2_grid > .col1 {
  width: auto;
}
.col2_grid_pc > .col2,
.col2_grid > .col2 {
  width: auto;
}

.col3_grid_pc,
.col3_grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.col3_grid_pc > .col1,
.col3_grid > .col1 {
  width: auto;
}
.col3_grid_pc > .col2,
.col3_grid > .col2 {
  width: auto;
}
.col3_grid_pc > .col3,
.col3_grid > .col3 {
  width: auto;
}

.col4_grid_pc,
.col4_grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.col4_grid_pc > .col1,
.col4_grid > .col1 {
  width: auto;
}
.col4_grid_pc > .col2,
.col4_grid > .col2 {
  width: auto;
}
.col4_grid_pc > .col3,
.col4_grid > .col3 {
  width: auto;
}
.col4_grid_pc > .col4,
.col4_grid > .col4 {
  width: auto;
}

.col2_inline_grid,
.col3_inline_grid,
.col4_inline_grid,
.col2_inline_grid_pc,
.col3_inline_grid_pc,
.col4_inline_grid_pc {
  list-style: none;
  display: inline-grid;
  margin: auto;
  gap: 32px;
  text-align: left;
}

.col2_inline_grid,
.col2_inline_grid_pc {
  grid-template-columns: 1fr 1fr;
}

.col3_inline_grid,
.col3_inline_grid_pc {
  grid-template-columns: 1fr 1fr 1fr;
}

.col4_inline_grid,
.col4_inline_grid_pc {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media only screen and (max-width: 768px) {
  .col2_inline_grid_pc,
  .col3_inline_grid_pc,
  .col4_inline_grid_pc,
  .col2_grid_pc,
  .col3_grid_pc,
  .col4_grid_pc {
    gap: 5vw;
    grid-template-columns: 1fr;
  }
}

.col2_wrap_pc,
.col2_wrap {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.col2_wrap_pc > .col1,
.col2_wrap > .col1 {
  width: 45%;
}
.col2_wrap_pc > .col2,
.col2_wrap > .col2 {
  width: 45%;
}

@media only screen and (max-width: 768px) {
  .col2_wrap_pc {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5vw;
  }
  .col2_wrap_pc > .col1 {
    width: 100%;
  }
  .col2_wrap_pc > .col2 {
    width: 100%;
  }
}

.col1_grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .col1_grid {
    gap: 5vw;
  }
}

.more_right_btn,
.btn_grd_o,
.btn_grd_bg,
.btn_w_line,
.btn_w_bd_b,
.btn_w_bd_o,
.btn_yellow,
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  background: #4b4440;
  color: #fff;
  border-radius: 100px;
  min-width: 236px;
  padding: 0.8em 1.5em;
  font-weight: 500;
}

.btn_yellow {
  background: #fabe00;
  color: #121946;
}

.btn_w_line {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.btn_w_bd_o {
  border: 2px solid #FF983F;
  background: #fff;
  color: #FF983F;
}

.btn_w_bd_b {
  position: relative;
  color: #6B80AF;
  background-image: -webkit-gradient(linear, left top, right top, from(#54659f), to(#50a2a8));
  background-image: linear-gradient(90deg, #54659f 0%, #50a2a8 100%);
}
.btn_w_bd_b::before {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 2px;
  background: #fff;
  border-radius: 100px;
}
.btn_w_bd_b > * {
  position: relative;
}

.btn_grd_bg {
  background-image: -webkit-gradient(linear, left top, right top, from(#54659f), to(#50a2a8));
  background-image: linear-gradient(90deg, #54659f 0%, #50a2a8 100%);
  color: #fff;
}

.btn_grd_o {
  background: -webkit-gradient(linear, left top, right top, from(#ff983f), to(#fdd213));
  background: linear-gradient(90deg, #ff983f 0%, #fdd213 100%);
  color: #fff;
}

.btn_size_m {
  font-size: 20px;
  min-width: 347px;
  padding: 1em 1.5em;
}
@media only screen and (max-width: 768px) {
  .btn_size_m {
    min-width: 0;
    width: 90%;
  }
}

.form_submit_btn {
  background: rgb(22, 121, 202);
}
.form_submit_btn:disabled {
  background: #ccc;
}

.more_right_btn {
  background: #667F9E;
  color: #fff;
  font-size: 16px;
  min-width: 10em;
  padding: 0.5em 1em 0.5em 1.5em;
  margin-left: 1em;
}
.more_right_btn::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_arrw_up_w.svg) center center no-repeat;
  background-size: contain;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: 0.5em;
}

.round20 {
  border-radius: 20px;
  overflow: hidden;
}

.tag_ttl {
  display: inline-block;
  background: #FF983F;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.5em 1em;
  border-radius: 10px;
  margin-bottom: 0.8em;
}

.pager_wrap {
  padding: 50px 0;
}

.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5em;
}
.pager > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  min-width: 1.5em;
  height: 1.8em;
  line-height: 1;
}
.pager a {
  text-decoration: none;
  color: #121946;
}
.pager.blog_archive_pager {
  font-size: 24px;
}
.pager.blog_detail_pager {
  font-size: 22px;
  width: 10em;
  margin: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .pager.blog_detail_pager {
    font-size: 16px;
  }
}

/* header
---------------------------------------------------------------- */
.header {
  position: sticky;
  z-index: 200;
  top: 0;
  width: 100%;
  margin: 0;
  height: 106px;
  border-bottom: #000 1px solid;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .header {
    background-color: initial;
    height: 80px;
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    border-bottom: none;
  }
}
.header a {
  text-decoration: none;
  color: #000;
}

.header_nav_wrap {
  width: 1024px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .header_nav_wrap {
    width: 100%;
    padding: 0 5vw;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
  }
}

.header_lead {
  display: block;
  font-size: 10px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .header_lead {
    display: none;
  }
}

.header_logo {
  display: inline-block;
  width: 235px;
}
@media only screen and (max-width: 768px) {
  .header_logo {
    width: auto;
    height: 46px;
  }
}
@media only screen and (max-width: 768px) {
  .header_logo img {
    width: auto;
    max-height: 100%;
  }
}

.header_nav {
  display: grid;
  grid-template-columns: 1fr;
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  .header_nav {
    display: none;
  }
}

.header_nav_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 6px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.header_nav_tel {
  display: block;
  line-height: 1;
}
.header_nav_tel a {
  display: block;
  font-size: 19px;
  font-weight: 500;
  color: #121946;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .header_nav_tel a {
    pointer-events: none;
  }
}
.header_nav_tel a::before {
  content: "";
  display: block;
  width: 21px;
  height: 27px;
  background: url(../img/common/icon_tel.svg) center center no-repeat;
  background-size: contain;
}

.header_nav_inq {
  display: block;
  line-height: 1;
}
.header_nav_inq a {
  display: block;
  font-size: 12px;
  background: #d74e19;
  color: #fff;
  padding: 0.5em 2em;
  border-radius: 100px;
}
.header_nav_inq a:hover {
  opacity: 0.8;
}

.header_nav_dl {
  display: block;
  line-height: 1;
}
.header_nav_dl a {
  display: block;
  font-size: 12px;
  background: #52c3ca;
  color: #fff;
  padding: 0.5em 2em;
  border-radius: 100px;
}
.header_nav_dl a:hover {
  opacity: 0.8;
}

.header_nav_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 25px;
  line-height: 1.2;
}
.header_nav_2 .item {
  display: block;
}
.header_nav_2 .item > a {
  display: block;
  position: relative;
  font-weight: 500;
}
.header_nav_2 .item > a > span {
  display: inline-block;
  padding: 4px 0 6px;
}
.header_nav_2 .item > a > span:after {
  content: "";
  height: 3px;
  background-color: #121946;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0;
  width: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header_nav_2 .item > a > span:hover::after {
  opacity: 1;
  width: 100%;
}

.mega_link::after {
  content: "";
  display: none;
  background: #121946;
  width: 12px;
  height: 10px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: -10px;
  margin: auto;
}
.mega_link.js-active::after {
  display: block;
}

.header_mega_menu_wrap {
  position: absolute;
  background: #fff;
  z-index: 10;
  left: 0;
  right: 0;
  top: 106px;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  opacity: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media only screen and (min-width: 769px) {
  .header_mega_menu_wrap.js-show {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
  }
}
.header_mega_menu_wrap .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header_mega_menu {
  padding: 1em 1em;
  font-size: 18px;
}
.header_mega_menu .mega_item {
  padding: 0.5em 0;
}
.header_mega_menu .mega_item > a {
  display: inline-block;
  position: relative;
  padding: 0.2em;
}
.header_mega_menu .mega_item > a::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  background: #CECECE;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
.header_mega_menu .mega_item > a::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid #000;
  left: 0;
  right: auto;
  bottom: 0;
  top: auto;
  width: 100%;
  opacity: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header_mega_menu .mega_item > a:hover::after {
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.header_menu_btn_sp {
  display: block;
  background: none;
  color: #eee;
  width: 40px;
  margin: auto 0 auto auto;
  z-index: 10;
}
.header_menu_btn_sp.js-active {
  color: #000;
}
.header_menu_btn_sp .txt {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 4px;
}
.header_menu_btn_sp .lines {
  width: 100%;
  height: 30px;
  display: block;
  position: relative;
}
.header_menu_btn_sp .line1,
.header_menu_btn_sp .line2,
.header_menu_btn_sp .line3 {
  display: block;
  width: 100%;
  height: 4px;
  background: #eee;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.header_menu_btn_sp .line1 {
  bottom: auto;
}
.header_menu_btn_sp .line3 {
  top: auto;
}
.header_menu_btn_sp.js-active .line1,
.header_menu_btn_sp.js-active .line2,
.header_menu_btn_sp.js-active .line3 {
  background: #000;
}
.header_menu_btn_sp.js-active .line1 {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header_menu_btn_sp.js-active .line2 {
  opacity: 0;
}
.header_menu_btn_sp.js-active .line3 {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header_menu_sp {
  position: fixed;
  background: #fff;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  display: none;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding-top: 50px;
  height: 100vh;
  overflow-y: auto;
}
@media only screen and (min-width: 769px) {
  .header_menu_sp {
    display: none;
  }
}
.header_menu_sp.js-active {
  display: block;
  opacity: 0.98;
  z-index: 1;
}
.header_menu_sp .header_logo_sp {
  display: inline-block;
  width: 126.56px;
}

.header_menu_list_sp {
  padding: 5vw;
}
.header_menu_list_sp li {
  display: block;
  margin: auto;
  padding: 2vw;
}
.header_menu_list_sp a {
  display: block;
}
.header_menu_list_sp .logo {
  width: 60%;
  margin-top: 5vw;
}

/* footer
---------------------------------------------------------------- */
.footer {
  margin-top: auto;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  background: #121946;
  color: #fff;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer .copyright {
  display: block;
  margin: 0;
  width: 100%;
  min-width: 1024px;
  text-align: center;
  background: #fff;
  color: #707070;
  font-size: 14px;
  padding: 1em 0;
}
@media only screen and (max-width: 768px) {
  .footer .copyright {
    min-width: 100%;
    padding: 1em 0;
    font-size: 12px;
  }
}

.footer_nav_wrap {
  width: 1024px;
  margin: auto;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .footer_nav_wrap {
    width: 100%;
    display: block;
  }
}

.footer_address {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .footer_address {
    width: 100%;
    margin: auto;
    text-align: center;
  }
}

.footer_company_name {
  font-size: 16px;
  font-weight: bold;
  margin: 0.5em auto;
}

.footer_company_address .fax {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .footer_address_inner {
    display: inline-block;
    text-align: left;
  }
}

.footer_logo {
  display: block;
  width: 203px;
}
@media only screen and (max-width: 768px) {
  .footer_logo {
    margin: auto;
  }
}

.footer_nav {
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .footer_nav {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    padding: 10vw 5vw;
    margin: auto;
  }
}
.footer_nav li {
  padding-left: 16px;
  margin: 0.4em 0;
}
.footer_nav .ttl {
  font-size: 16px;
  font-weight: 600;
  padding-left: 0;
}

.footer_nav_1 ul + ul,
.footer_nav_2 ul + ul,
.footer_nav_3 ul + ul {
  margin-top: 1.2em;
}
.footer_nav_1 .ttl + .ttl,
.footer_nav_2 .ttl + .ttl,
.footer_nav_3 .ttl + .ttl {
  margin-top: 0.5em;
}
.footer_nav_1 li,
.footer_nav_2 li,
.footer_nav_3 li {
  line-height: 1.1;
}

/* ect */
/* float_btn_area
---------------------------------------------------------------- */
.float_btn_area2 {
  position: fixed;
  bottom: 1em;
  right: 1em;
  margin: auto;
  z-index: 5;
  text-align: right;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 12px;
  gap: 1em;
}
@media only screen and (max-width: 768px) {
  .float_btn_area2 {
    text-align: center;
    width: 100vw;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    right: 0;
    left: 0;
    padding: 1vw;
    gap: 1vw;
    bottom: 1vw;
    font-size: 3.6vw;
  }
}

.float_btn_area2_btn,
.float_btn_subsidy,
.float_btn_download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 1em 0.5em 2.5em;
  border-radius: 7px;
  gap: 0.5em;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.28);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.28);
}
@media only screen and (max-width: 768px) {
  .float_btn_area2_btn,
  .float_btn_subsidy,
  .float_btn_download {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 2em;
  }
}
.float_btn_area2_btn::after,
.float_btn_subsidy::after,
.float_btn_download::after {
  content: "";
  background: #fff;
  width: 0.7em;
  height: 0.8em;
  aspect-ratio: 1/1;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media only screen and (max-width: 768px) {
  .float_btn_area2_btn::after,
  .float_btn_subsidy::after,
  .float_btn_download::after {
    content: none;
  }
}
.float_btn_area2_btn em,
.float_btn_subsidy em,
.float_btn_download em {
  font-size: 15px;
  font-weight: bold;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .float_btn_area2_btn em,
  .float_btn_subsidy em,
  .float_btn_download em {
    margin: auto;
    font-size: 3.6vw;
  }
}

.float_btn_subsidy {
  color: #fff;
  background: url(../img/common/icon_float_sb.svg) left 0.5em center no-repeat, #d89044;
  background-size: 1.5em auto, auto;
}

.float_btn_download {
  color: #fff;
  background: url(../img/common/icon_float_dl.svg) left 0.5em center no-repeat, #52c3ca;
  background-size: 1.5em auto, auto;
}

.float_btn_area2_btn.--led_dl,
.float_btn_area2_btn.--led_simu {
  color: #fff;
  background-size: 1.5em auto, auto;
  text-align: left;
  line-height: 1.1;
}
@media only screen and (max-width: 768px) {
  .float_btn_area2_btn.--led_dl,
  .float_btn_area2_btn.--led_simu {
    padding-block: 0.25em;
  }
}
.float_btn_area2_btn.--led_dl em,
.float_btn_area2_btn.--led_simu em {
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .float_btn_area2_btn.--led_dl em,
  .float_btn_area2_btn.--led_simu em {
    font-size: 3.6vw;
  }
}

.float_btn_area2_btn.--led_dl {
  background: url(../img/common/icon_float_dl.svg) left 0.5em center no-repeat, #52c3ca;
}
.float_btn_area2_btn.--led_dl .thumb {
  width: 48px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .float_btn_area2_btn.--led_dl .thumb {
    display: none;
  }
}

.float_btn_area2_btn.--led_simu {
  background: url(../img/common/icon_float_sb.svg) left 0.5em center no-repeat, #d89044;
}
.float_btn_area2_btn.--led_simu > span {
  margin-inline: auto 1em;
}

.float_btn_area {
  position: fixed;
  bottom: 1em;
  padding-right: 1em;
  margin: auto;
  z-index: 5;
  width: 100%;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .float_btn_area {
    text-align: center;
    width: 100vw;
  }
}
.float_btn_area .float_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: #c52817 3px solid;
  background: url(../img/common/circle_arrow_r_w.svg) center right 20px no-repeat, -webkit-gradient(linear, left top, right top, from(#F2AE41), to(#d74e19));
  background: url(../img/common/circle_arrow_r_w.svg) center right 20px no-repeat, linear-gradient(to right, #F2AE41, #d74e19);
  background-size: 34px 34px, auto;
  border-radius: 23px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  font-weight: bold;
  font-size: min(4.6vw, 21px);
  padding: 0.4em 70px 0.4em 1em;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 769px) {
  .float_btn_area .float_btn {
    text-align: left;
  }
  .float_btn_area .float_btn:hover {
    opacity: 0.85;
  }
}
@media only screen and (max-width: 768px) {
  .float_btn_area .float_btn {
    font-size: 4.6vw;
    background-size: auto 60%, auto;
    text-align: left;
  }
}
.float_btn_area .float_btn em {
  font-size: min(5vw, 24px);
}
@media only screen and (max-width: 768px) {
  .float_btn_area .float_btn em {
    font-size: 5vw;
  }
}

/* home
---------------------------------------------------------------- */
.home_mv {
  height: calc(100vh - 106px);
  background: url(../img/home/home_mv_bg_pc.jpg) center center no-repeat;
  background-image: url(../img/home/home_mv_bg_pc.webp);
  background-size: cover;
  min-height: 720px;
}
@media only screen and (max-width: 768px) {
  .home_mv {
    height: 100vh;
    padding-top: 70px;
  }
}
.home_mv .ttl {
  color: #fff;
  font-family: "Noto Serif JP", Serif;
  font-weight: 400;
  font-size: 78px;
  position: absolute;
  margin: auto;
  top: 13%;
  bottom: auto;
}
@media only screen and (max-width: 768px) {
  .home_mv .ttl {
    font-size: 12vw;
    position: static;
  }
}
.home_mv .home_mv_box1 {
  position: absolute;
  width: 412px;
  top: 13%;
  bottom: auto;
  right: 0;
  margin: auto;
  background: #fff;
  border-radius: 24px;
}
@media only screen and (max-width: 768px) {
  .home_mv .home_mv_box1 {
    position: static;
    width: 100%;
    margin-top: 8vw;
  }
}
.home_mv .home_mv_box1 .home_mv_box1_txt1 {
  padding: 1rem 0;
  display: block;
  line-height: 1;
  margin: auto;
  line-height: 1;
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .home_mv .home_mv_box1 .home_mv_box1_txt1 {
    font-size: 3.6vw;
  }
}
.home_mv .home_mv_box1 .home_mv_box1_txt1 span {
  display: inline-block;
  background: #2B3D74;
  color: #fff;
  padding: 0.5em 2em 0.5em 1em;
}
@media only screen and (max-width: 768px) {
  .home_mv .home_mv_box1 .home_mv_box1_txt1 span {
    padding: 0.5em;
  }
}
.home_mv .home_mv_box1 .home_mv_box1_txt2 {
  min-height: 150px;
  margin: auto;
  text-align: center;
  line-height: 1;
  padding-bottom: 0.2em;
  font-family: "Jost", sans-serif;
  color: #D74E19;
  font-size: 60px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .home_mv .home_mv_box1 .home_mv_box1_txt2 {
    font-size: 13vw;
    min-height: 2em;
  }
}
.home_mv .home_mv_box1 .home_mv_box1_txt2 .small {
  font-size: 0.75em;
}

.home_sec_focus {
  padding: 90px 0;
  background: #ddd;
}
@media only screen and (max-width: 768px) {
  .home_sec_focus {
    padding: 10vw 0;
  }
}
.home_sec_focus .home_sec1_ttl {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .home_sec_focus .home_sec1_ttl {
    margin-bottom: 0.8em;
  }
}
.home_sec_focus .home_sec1_list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .home_sec_focus .home_sec1_list {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.home_sec_focus .home_sec1_list li {
  display: block;
  color: #4b4440;
}
.home_sec_focus .home_sec1_list a {
  display: block;
  background: #fff;
  color: #4b4440;
  text-decoration: none;
  border-radius: 24px;
  overflow: hidden;
}
.home_sec_focus .home_sec1_list figure {
  display: block;
  position: relative;
}
.home_sec_focus .home_sec1_list figcaption {
  display: inline-block;
  background: #d74e19;
  color: #fff;
  position: absolute;
  font-size: 13px;
  line-height: 1;
  padding: 0.5em 1em;
  top: 26px;
}
@media only screen and (max-width: 768px) {
  .home_sec_focus .home_sec1_list figcaption {
    top: 7vw;
  }
}
.home_sec_focus .home_sec1_list .txt_block {
  background: #fff;
  padding: 1em;
}
.home_sec_focus .home_sec1_list .txt_block .txt1 {
  font-size: 13px;
  font-weight: 500;
}
.home_sec_focus .home_sec1_list .txt_block .txt2 {
  font-size: 20px;
  font-weight: bold;
}
.home_sec_focus .home_sec1_list .txt_block.em .txt1 {
  font-size: 15px;
}
.home_sec_focus .home_sec1_list .txt_block.em .txt2 {
  font-size: 22px;
}

.home_sec_aboutus {
  background: #ddd;
  padding: 90px 0 35px;
}
@media only screen and (max-width: 768px) {
  .home_sec_aboutus {
    padding: 10vw 0 5vw;
  }
}
.home_sec_aboutus .bg_left_w {
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .home_sec_aboutus .bg_left_w {
    height: calc(100% - 50vw);
    margin-top: 0;
    width: 200vw;
    left: -90vw;
  }
}
@media only screen and (max-width: 768px) {
  .home_sec_aboutus .col2_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.home_sec_aboutus .col2_wrap .col2_1 {
  width: 500px;
  padding: 52px 0;
}
@media only screen and (max-width: 768px) {
  .home_sec_aboutus .col2_wrap .col2_1 {
    width: 100%;
    padding: 8vw 0;
    padding-right: 1em;
  }
}
.home_sec_aboutus .col2_wrap .col2_2 {
  width: calc(100% - 500px);
  -ms-flex-item-align: center;
  align-self: center;
}
@media only screen and (max-width: 768px) {
  .home_sec_aboutus .col2_wrap .col2_2 {
    width: 100%;
  }
}
.home_sec_aboutus .txt_wrap {
  margin-top: 1em;
}
.home_sec_aboutus .txt_wrap p {
  font-size: 18px;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .home_sec_aboutus .txt_wrap p {
    font-size: 16px;
  }
}
.home_sec_aboutus .txt_wrap .btn {
  margin-top: 2em;
}

.home_sec_strong {
  background: #ddd;
  padding: 35px 0 90px;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong {
    padding: 5vw 0 10vw;
  }
}
.home_sec_strong .bg_right_w {
  padding: 50px 0;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .bg_right_w {
    height: calc(100% - 88vw);
    margin-top: 0;
    width: 200vw;
    left: -20vw;
  }
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .col2_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.home_sec_strong .col2_wrap .col2_1 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 490px;
  padding: 52px 0;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .col2_wrap .col2_1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-left: 2em;
  }
}
.home_sec_strong .col2_wrap .col2_2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 435px;
  -ms-flex-item-align: center;
  align-self: center;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .col2_wrap .col2_2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.home_sec_strong .col2_wrap .txt_wrap {
  margin-top: 1em;
}
.home_sec_strong .col2_wrap .txt_wrap p {
  font-size: 18px;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .col2_wrap .txt_wrap p {
    font-size: 16px;
  }
}
.home_sec_strong .col2_wrap .txt_wrap .btn {
  margin-top: 2em;
}
.home_sec_strong .home_sec_strong_list {
  list-style: none;
  position: relative;
  width: 100%;
  height: 450px;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .home_sec_strong_list {
    height: 98vw;
  }
}
.home_sec_strong .home_sec_strong_list .item {
  display: block;
  width: 220px;
  height: 220px;
  border-radius: 300px;
  position: absolute;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .home_sec_strong_list .item {
    width: 47vw;
    height: 47vw;
  }
}
.home_sec_strong .home_sec_strong_list .item a {
  position: relative;
  text-decoration: none;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 5px solid #000;
  border-radius: 300px;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .home_sec_strong_list .item a {
    border-width: 3px;
  }
}
.home_sec_strong .home_sec_strong_list .item a:hover {
  background: rgba(255, 255, 255, 0.8);
}
.home_sec_strong .home_sec_strong_list .item .num {
  font-size: 99px;
  font-weight: bold;
  position: absolute;
  color: #b8b8ba;
  left: 20px;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .home_sec_strong_list .item .num {
    font-size: 21.8vw;
    left: 3vw;
  }
}
.home_sec_strong .home_sec_strong_list .item .txt {
  position: relative;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .home_sec_strong_list .item .txt {
    font-size: 3.8vw;
  }
}
.home_sec_strong .home_sec_strong_list .item .txt::after {
  content: "";
  width: 32px;
  height: 20px;
  display: block;
  background: url(../img/common/icon_arrow_r_k.svg) center center no-repeat;
  background-size: contain;
  margin: 10px auto auto auto;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .home_sec_strong_list .item .txt::after {
    margin-top: 1vw;
  }
}
.home_sec_strong .home_sec_strong_list .item1 {
  left: 5px;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .home_sec_strong_list .item1 {
    left: 0;
  }
}
.home_sec_strong .home_sec_strong_list .item2 {
  right: 0;
  left: auto;
  top: 100px;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .home_sec_strong_list .item2 {
    top: 24vw;
  }
}
.home_sec_strong .home_sec_strong_list .item3 {
  top: auto;
  bottom: 0;
  left: 25px;
}
@media only screen and (max-width: 768px) {
  .home_sec_strong .home_sec_strong_list .item3 {
    left: 2.5vw;
  }
}

.home_sec_service {
  padding: 100px 0;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .home_sec_service {
    padding: 15vw 0;
  }
}
.home_sec_service .sub_sec {
  background-color: #eee;
  border-radius: 25px;
  padding: 70px 70px;
  margin: 28px auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .home_sec_service .sub_sec {
    padding: 8vw 5vw;
  }
}
.home_sec_service .sec01 {
  background-image: url(../img/home/home_sv_1_bg_pc.jpg);
}
.home_sec_service .sec02 {
  background-image: url(../img/home/home_sv_2_bg_pc.webp);
}
.home_sec_service .sec03 {
  background-image: url(../img/home/home_sv_3_bg_pc.jpg);
}
.home_sec_service .sec04 {
  background-image: url(../img/home/home_sv_4_bg_pc.webp);
}
.home_sec_service .sec05 {
  background-image: url(../img/home/home_sv_5_bg_pc.jpg);
}
.home_sec_service .sub_sec_header {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 4em;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .home_sec_service .sub_sec_header {
    display: block;
    font-size: 16px;
  }
}
.home_sec_service .sub_sec_header .ttl {
  font-size: 44px;
}
@media only screen and (max-width: 768px) {
  .home_sec_service .sub_sec_header .ttl {
    font-size: 8vw;
    margin-bottom: 2vw;
  }
}
.home_sec_service ul {
  margin-top: 50px;
  width: 100%;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .home_sec_service ul {
    grid-template-columns: 1fr;
    margin-top: 5vw;
  }
}
.home_sec_service ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 5px;
  width: 100%;
  height: 100%;
  background: #dfdfe0;
  color: #5c5a5a;
  text-decoration: none;
  border-radius: 14px;
  padding: 5px 5px;
}
.home_sec_service ul a::after {
  content: "";
  display: block;
  background: url(../img/common/arrow_r_b.svg) center center no-repeat;
  background-size: contain;
  width: 8px;
  height: 20px;
  margin-left: auto;
}
.home_sec_service ul img {
  border-radius: 12px;
  width: 58px;
  height: 58px;
}

.home_sec_facility {
  background: #ddd;
  padding: 100px 0 100px;
}
@media only screen and (max-width: 768px) {
  .home_sec_facility {
    padding: 15vw 0;
  }
}
.home_sec_facility .ttl_type_01 {
  color: #fff;
}
.home_sec_facility::before {
  content: "";
  display: block;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  width: 80%;
  height: calc(100% - 280px);
  min-height: 70%;
  background: #78b080;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .home_sec_facility::before {
    height: 30%;
    min-height: 0;
    width: 90%;
  }
}
.home_sec_facility .btn_warp {
  margin-top: 60px;
  text-align: center;
}

.home_facility_list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .home_facility_list {
    grid-template-columns: 1fr;
  }
}
.home_facility_list .item {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.home_facility_list .item .ttl {
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
}
.home_facility_list .item .img {
  margin: 0;
  padding: 0;
}
.home_facility_list .item .txt {
  padding: 10px 20px;
}

.recommend_list {
  padding: 10px 20px;
  font-size: 12px;
  display: grid;
  grid-template-columns: 9em auto;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .recommend_list {
    grid-template-columns: 1fr;
  }
}
.recommend_list .list_ttl {
  color: #78b080;
  font-weight: 500;
}
.recommend_list .list_body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.recommend_list a {
  display: block;
  background: #78b080;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 5px 2px;
  border-radius: 50px;
  line-height: 1.2;
}
.home_sec_benefit {
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .home_sec_benefit {
    padding: 15vw 0;
  }
}
.home_sec_benefit .btn_wrap {
  padding: 50px 0;
  text-align: center;
}

.home_benefit_list {
  margin-top: 40px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  font-size: 16px;
  color: #5c5a5a;
}
@media only screen and (max-width: 768px) {
  .home_benefit_list {
    grid-template-columns: 1fr;
    gap: 10vw;
  }
}
.home_benefit_list .img {
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .home_benefit_list .img {
    width: 70vw;
  }
}
.home_benefit_list .txt {
  padding: 2em 0;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
@media only screen and (max-width: 768px) {
  .home_benefit_list .txt {
    padding: 1em;
  }
}

.home_sec_consulting {
  background: #ddd;
  padding: 70px 0;
}
@media only screen and (max-width: 768px) {
  .home_sec_consulting .bg_left_w {
    width: 110vw;
    height: 98vw;
    top: 0;
    bottom: auto;
    left: -32vw;
  }
}
.home_sec_consulting .bg_left_w::before {
  content: "";
  display: block;
  width: 120%;
  height: 100%;
  position: absolute;
  background: url(../img/home/home_consul_bg.jpg) right top 15% no-repeat;
  background-size: cover;
  -webkit-transform: skewX(20deg) translateX(0);
  transform: skewX(20deg) translateX(0);
}
@media only screen and (max-width: 768px) {
  .home_sec_consulting .bg_left_w::before {
    -webkit-transform: skewX(20deg) translateX(0);
    transform: skewX(20deg) translateX(0);
  }
}
.home_sec_consulting .inner_w100 {
  padding: 120px 0;
  margin: 50px 0;
}
@media only screen and (max-width: 768px) {
  .home_sec_consulting .inner_w100 {
    padding: 65vw 0 15vw;
  }
}
@media only screen and (max-width: 768px) {
  .home_sec_consulting .sub_sec2 {
    padding: 15vw 0 15vw;
  }
}
.home_sec_consulting .sub_sec2 .bg_right_w {
  background: linear-gradient(45deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
@media only screen and (max-width: 768px) {
  .home_sec_consulting .sub_sec2 .bg_right_w {
    width: 110vw;
    height: 98vw;
    top: 0;
    bottom: auto;
  }
}
.home_sec_consulting .block1 {
  width: 600px;
  padding: 45px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 40px;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .home_sec_consulting .block1 {
    width: 100%;
    margin: auto auto auto;
    padding: 5vw 6vw 10vw;
    border-radius: 23px;
  }
}
.home_sec_consulting .home_consulting_ttl {
  font-weight: bold;
  font-size: 26px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  line-height: 1.8;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 768px) {
  .home_sec_consulting .home_consulting_ttl {
    font-size: 22px;
  }
}
.home_sec_consulting .home_consulting_txt p {
  font-size: 18px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .home_sec_consulting .home_consulting_txt p {
    font-size: 16px;
  }
}
.home_sec_consulting .col2_grid {
  grid-template-columns: 600px calc(100% - 600px);
  gap: 0;
}
@media only screen and (max-width: 768px) {
  .home_sec_consulting .col2_grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .home_sec_consulting .col2_grid .col1 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media only screen and (max-width: 768px) {
  .home_sec_consulting .col2_grid .col2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.home_sec_consulting .col2_grid .col2 img {
  width: 100%;
}

.home_sec_result {
  padding: 70px 0;
}
@media only screen and (max-width: 768px) {
  .home_sec_result {
    padding: 15vw 0;
  }
}

.home_result_list {
  display: grid;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}
@media only screen and (max-width: 768px) {
  .home_result_list {
    grid-template-columns: 1fr;
    gap: 10vw;
  }
}
.home_result_list a {
  text-decoration: none;
  color: #000;
}
.home_result_list .img {
  border-radius: 20px;
  overflow: hidden;
}
.home_result_list .ttl {
  font-size: 26px;
  font-weight: bold;
  color: #008f5d;
  padding: 0.2em 0;
}
.home_result_list .txt {
  font-size: 18px;
}

.home_sec_voice {
  padding: 70px 0;
}
.home_sec_voice .btn_wrap {
  padding: 50px 0;
  text-align: center;
}

.home_voice_list {
  display: grid;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 30px;
}
@media only screen and (max-width: 768px) {
  .home_voice_list {
    grid-template-columns: 1fr;
    gap: 10vw;
  }
}
.home_voice_list a {
  text-decoration: none;
  color: #000;
}
.home_voice_list .img {
  border-radius: 20px;
  overflow: hidden;
}
.home_voice_list .ttl {
  font-weight: bold;
  color: #008f5d;
  padding: 0.2em 0;
}
.home_voice_list .ttl .name1 {
  font-size: 18px;
  padding-right: 1em;
}
.home_voice_list .ttl .name2 {
  font-size: 21px;
}
.home_voice_list .txt {
  font-size: 18px;
}

.home_sec_consul {
  background: #ddd;
  padding: 70px 0;
}
.home_sec_consul .col2_grid {
  color: #fff;
  padding: 70px;
  grid-template-columns: 340px 566px;
  gap: 0;
}
@media only screen and (max-width: 768px) {
  .home_sec_consul .col2_grid {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 4vw;
  }
}
.home_sec_consul .col2_grid::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #63b9c8, #255796);
  left: 0;
  top: 0;
  margin: 0;
  border-radius: 30px;
}
@media only screen and (max-width: 768px) {
  .home_sec_consul .col2_grid::before {
    height: 80%;
    width: 90vw;
    left: 2vw;
  }
}
.home_sec_consul .col2_grid .col1 {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .home_sec_consul .col2_grid .col1 {
    padding: 8vw 6vw 5vw 4vw;
  }
}
.home_sec_consul .col2_grid .col1 .ttl_main {
  line-height: 1.4;
}
.home_sec_consul .col2_grid .col1 .ttl_lead {
  line-height: 2;
}
.home_sec_consul .col2_grid .col2 {
  position: relative;
  left: 100px;
}
@media only screen and (max-width: 768px) {
  .home_sec_consul .col2_grid .col2 {
    left: 2vw;
  }
}
.home_sec_consul .btn_yellow {
  font-size: 22px;
  margin-top: 1em;
  width: 340px;
  height: 3em;
}
@media only screen and (max-width: 768px) {
  .home_sec_consul .btn_yellow {
    width: 90%;
    margin-left: auto;
    font-size: 20px;
  }
}
.home_sec_consul .list {
  border-radius: 30px;
  list-style: none;
  width: 100%;
  height: auto;
  background: #fff;
  color: #000;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 40px;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .home_sec_consul .list {
    padding: 5vw;
  }
}
.home_sec_consul .list .item {
  display: grid;
  font-size: 44px;
  grid-template-columns: 1em auto;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0;
}
@media only screen and (max-width: 768px) {
  .home_sec_consul .list .item {
    font-size: 7.4vw;
  }
}
.home_sec_consul .list .num {
  color: #63b9c8;
  font-weight: bold;
}
.home_sec_consul .list .txt {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .home_sec_consul .list .txt {
    font-size: 4vw;
  }
}

.home_sec_zeb {
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .home_sec_zeb {
    padding: 10vw 0;
  }
}
.home_sec_zeb .ttl_type_01 .ttl_main {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .home_sec_zeb .col2_wrap {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.home_sec_zeb .col2_wrap .col1 {
  width: 420px;
}
@media only screen and (max-width: 768px) {
  .home_sec_zeb .col2_wrap .col1 {
    width: 100%;
  }
}
.home_sec_zeb .col2_wrap .col2 {
  width: 550px;
}
@media only screen and (max-width: 768px) {
  .home_sec_zeb .col2_wrap .col2 {
    width: 100%;
  }
}
.home_sec_zeb .col2_wrap .col2 .txt1 {
  font-size: 18px;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .home_sec_zeb .col2_wrap .col2 .txt1 {
    font-size: 14px;
  }
}
.home_sec_zeb .col2_wrap .col2 .txt2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .home_sec_zeb .col2_wrap .col2 .txt2 {
    font-size: 24px;
  }
}
.home_sec_zeb .col2_wrap .col2 .txt2 .small {
  font-size: 18px;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .home_sec_zeb .col2_wrap .col2 .txt2 .small {
    font-size: 14px;
  }
}
.home_sec_zeb .col2_wrap .col2 .txt3 {
  line-height: 2;
  color: #666464;
}
.home_sec_zeb .zeb_logo_wrap {
  width: 220px;
  margin: auto;
}

.home_mv2025 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: calc(100svh - 106px);
  max-height: auto;
  background: #bcdee5;
  padding: 50px 0;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .home_mv2025 {
    min-height: 100svh;
    height: auto;
    padding: 14vw 0 8vw;
  }
}
.home_mv2025 .inner {
  height: auto;
}
@media only screen and (min-width: 769px) {
  .home_mv2025 .inner {
    width: 100%;
  }
}

.home_mv2025 .home_mv_flex {
  margin: auto;
}
@media only screen and (min-width: 769px) {
  .home_mv2025 .home_mv_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 240px);
    min-width: 1024px;
    container-type: inline-size;
  }
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_flex {
    display: block;
  }
}
@media only screen and (min-width: 769px) {
  .home_mv2025 .home_mv_flex .flex_col1 {
    width: 50%;
  }
}
.home_mv2025 .home_mv_flex .flex_col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 769px) {
  .home_mv2025 .home_mv_flex .flex_col2 {
    width: 50%;
  }
}
.home_mv2025 .home_mv_flex .flex_col2 img {
  display: block;
  width: 80%;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  .home_mv2025 .home_mv_flex .flex_col2 img {
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_flex .flex_col2 img {
    width: 57vw;
    margin-top: 1vw;
  }
}
.home_mv2025 .home_mv_ttl {
  font-size: 52px;
  font-size: max(52px, (100vw - 240px) * 0.046);
  font-weight: bold;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_ttl {
    font-size: 8.8vw;
  }
}
.home_mv2025 .home_mv_ttl span {
  color: #359cb2;
}
.home_mv2025 .home_mv_lead {
  line-height: 1.9;
  margin: 1em 0;
  font-size: 14px;
  font-size: max(14px, (100vw - 240px) * 0.012);
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_lead {
    font-size: 3.5vw;
  }
}

.home_mv2025 .home_mv_list-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  text-align: center;
  list-style: none;
  padding: 0;
  text-indent: 0;
}
@media only screen and (min-width: 769px) {
  .home_mv2025 .home_mv_list-1 {
    width: 415px;
  }
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_list-1 {
    width: 100%;
  }
}
.home_mv2025 .home_mv_list-1 li {
  background: #fff;
  border-radius: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
  width: 100%;
}
.home_mv2025 .home_mv_list-1 .txt1 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 22%;
  overflow: visible;
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_list-1 .txt1 {
    font-size: 3vw;
  }
}
.home_mv2025 .home_mv_list-1 .txt2 {
  color: #359cb2;
  font-size: 42px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
  height: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: visible;
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_list-1 .txt2 {
    font-size: 8vw;
  }
}
.home_mv2025 .home_mv_list-1 .txt2 .small {
  font-size: 0.68em;
}
.home_mv2025 .home_mv_list-1 .list_col3 .txt2 {
  line-height: 0.7;
}
.home_mv2025 .home_mv_list-1 .list_col3 .txt2 .small {
  font-size: 0.5em;
}
.home_mv2025 .home_mv_list-2 {
  text-align: center;
  list-style: none;
  padding: 0;
  text-indent: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 88%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_list-2 {
    width: 100%;
  }
}
.home_mv2025 .home_mv_list-2 .list_col1 {
  width: 39.5%;
}
.home_mv2025 .home_mv_list-2 .list_col1 img {
  width: 100%;
}
.home_mv2025 .home_mv_list-2 .list_col2 {
  width: 58%;
}
.home_mv2025 .home_mv_list-2 .list_col2 img {
  width: 100%;
}

.home_mv2025 .home_mv_links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  list-style: none;
  text-indent: 0;
  margin: 42px auto 0;
  padding: 0;
}
@media only screen and (min-width: 769px) {
  .home_mv2025 .home_mv_links {
    width: 938px;
  }
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_links {
    grid-template-columns: 1fr;
    margin-top: 6vw;
    gap: 4vw;
  }
}
.home_mv2025 .home_mv_links .links_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home_mv2025 .home_mv_links a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.home_mv2025 .home_mv_links .links_card__item {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_links .links_card__item {
    padding: 2.5vw;
  }
}
.home_mv2025 .home_mv_links .links_card__label {
  display: inline-block;
  position: absolute;
  width: 12em;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #ffea45;
  color: #359cb2;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: 0.5em;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_links .links_card__label {
    font-size: 3.5vw;
    padding: 0.4em;
  }
}
.home_mv2025 .home_mv_links .links_card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 162px;
  width: 100%;
  background-color: #359cb2;
  -webkit-box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_links .links_card__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2vw;
    min-height: 20vw;
    padding: 2vw 0 0;
  }
}
.home_mv2025 .home_mv_links .links_card__inner.--led {
  background-image: url(../img/home/mv_link_led_bg_pc.webp);
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_links .links_card__inner.--led {
    background-image: url(../img/home/mv_link_led_bg_sp.webp);
  }
}
.home_mv2025 .home_mv_links .links_card__inner.--solar {
  background-image: url(../img/home/mv_link_solar_bg_pc.webp);
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_links .links_card__inner.--solar {
    background-image: url(../img/home/mv_link_solar_bg_sp.webp);
  }
}
.home_mv2025 .home_mv_links .links_card__inner.--air {
  background-image: url(../img/home/mv_link_air_bg_pc.webp);
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_links .links_card__inner.--air {
    background-image: url(../img/home/mv_link_air_bg_sp.webp);
  }
}
.home_mv2025 .home_mv_links .links_card__title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_links .links_card__title {
    font-size: 7vw;
  }
}
.home_mv2025 .home_mv_links .links_card__subtitle {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_links .links_card__subtitle {
    font-size: 4vw;
  }
}
.home_mv2025 .home_mv_form {
  position: absolute;
  background: #efefef;
  border-radius: 12px;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  top: 20px;
  right: 20px;
  padding: 15px;
  max-width: 260px;
}
@media only screen and (max-width: 768px) {
  .home_mv2025 .home_mv_form {
    display: none;
  }
}
.home_mv2025 .home_mv_form .form_ttl {
  font-size: 24px;
  line-height: 1;
  margin: auto;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5em;
}
.home_mv2025 .home_mv_form .form_sub_ttl {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin: auto;
}
.home_mv2025 .home_mv_form .form_sub_ttl span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #4d4d4d;
  color: #fff;
  border-radius: 50px;
  padding: 0.25em 1em;
}
.home_mv2025 .home_mv_form .form_label {
  display: block;
  line-height: 1.2;
  margin-top: 16px;
  margin-bottom: 0.25em;
  font-size: 14px;
  font-weight: 600;
}
.home_mv2025 .home_mv_form .form_text {
  width: 100%;
  display: block;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.2;
  padding: 0.25em;
}
.home_mv2025 .home_mv_form .form_submit_block {
  text-align: center;
}
.home_mv2025 .home_mv_form .form_btn {
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50px;
  padding: 0.5em 2em;
  font-weight: 600;
  height: 25px;
}
.home_mv2025 .home_mv_form .form_submit_wrap {
  display: inline-block;
  position: relative;
  margin: 16px auto;
}
.home_mv2025 .home_mv_form .form_submit_wrap::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 8px;
  background: #fff;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  right: 7px;
  top: 13px;
  bottom: auto;
  margin: auto;
}
.home_mv2025 .home_mv_form .form_submit {
  background: #d14418;
  color: #fff;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  font-size: 12px;
  position: relative;
  display: block;
  height: 33px;
}
.home_mv2025 .home_mv_form .form_submit:hover {
  opacity: 0.75;
}
.home_mv2025 .home_mv_form .form_select {
  width: 100%;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.2;
  padding: 0 0.25em;
}
.home_mv2025 .home_mv_form .wpcf7-not-valid-tip,
.home_mv2025 .home_mv_form .wpcf7-response-output {
  font-size: 12px;
  color: red;
}
.home_mv2025 .home_mv_form .wpcf7-spinner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.home_mv2025 .home_mv_form {
  /* CF7 成功メッセージだけ非表示にする */
}
.home_mv2025 .home_mv_form .wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

.sec_cta_type1 {
  padding: 80px 10px;
}
@media only screen and (max-width: 768px) {
  .sec_cta_type1 {
    padding: 8vw 4vw;
  }
}
.sec_cta_type1 .cta_block {
  max-width: 850px;
  width: 100%;
  border-radius: 30px;
  color: #0c7579;
  margin: auto;
  padding: 30px;
  background-color: #fce952;
  background-image: url(../img/home/hojo_cta_bg_1.png), url(../img/home/hojo_cta_bg_2.png);
  background-position: left 40px top 18px, right 30px top 10px;
  background-size: 104px auto, 130px auto;
}
@media only screen and (max-width: 768px) {
  .sec_cta_type1 .cta_block {
    background-size: 13vw auto, 14.6vw auto;
    background-position: left 5vw top 6.1vw, right 4.8vw top 6.1vw;
  }
}
.sec_cta_type1 .cta_ttl {
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
.sec_cta_type1 .cta_ttl .line1 {
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .sec_cta_type1 .cta_ttl .line1 {
    font-size: 3.7vw;
  }
}
.sec_cta_type1 .cta_ttl .line1 em {
  font-size: 1.3em;
}
.sec_cta_type1 .cta_ttl .line2 {
  font-size: 36px;
}
@media only screen and (max-width: 768px) {
  .sec_cta_type1 .cta_ttl .line2 {
    font-size: 6.6vw;
  }
}
.sec_cta_type1 .cta_btns {
  width: 77%;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.8%;
  margin: 30px auto auto;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .sec_cta_type1 .cta_btns {
    grid-template-columns: 1fr;
    width: 77vw;
  }
}
.sec_cta_type1 .cta_btns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border-radius: 22px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  -webkit-box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}
.sec_cta_type1 .cta_btns a .line1 {
  font-size: 20px;
}
.sec_cta_type1 .cta_btns a .line2 {
  font-size: 14px;
  margin-top: 0.8em;
}
.sec_cta_type1 .cta_btns a::after {
  content: "";
  display: block;
  width: 10px;
  height: 12px;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.sec_cta_type1 .cta_btns .btn1 {
  background: #0c7579;
  color: #fff;
}
.sec_cta_type1 .cta_btns .btn1::after {
  background-color: #fff;
}
.sec_cta_type1 .cta_btns .btn2 {
  background: #fff;
  color: inherit;
}
.sec_cta_type1 .cta_btns .btn2::after {
  background-color: #0c7579;
}

.home_sec_recommend {
  padding: 90px 0;
  background: #ddd;
}
@media only screen and (max-width: 768px) {
  .home_sec_recommend {
    padding: 10vw 0;
  }
}
.home_sec_recommend .ttl_type_01 {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .home_sec_recommend .ttl_type_01 {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media only screen and (max-width: 768px) {
  .home_sec_recommend .ttl_type_01 .ttl_en {
    margin-bottom: 0.5em;
  }
}

.home_recommend_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .home_recommend_list {
    grid-template-columns: 1fr;
  }
}
.home_recommend_list .list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  background: #fff;
}
.home_recommend_list .list_item .list_item_img {
  width: 100%;
  height: auto;
  aspect-ratio: 330/198;
  overflow: hidden;
}
.home_recommend_list .list_item .list_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home_recommend_list .list_item .list_item_body {
  padding: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  gap: 5px;
}
.home_recommend_list .list_item .list_item_datetime {
  font-size: 16px;
  font-weight: 600;
  color: #234d96;
}
.home_recommend_list .list_item .list_item_txt {
  font-size: 18px;
  font-weight: 600;
}

.partner_links_wrap {
  padding: 30px 0 50px;
}
@media only screen and (max-width: 768px) {
  .partner_links_wrap {
    padding: 0 0 5vw;
  }
}

.partner_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
}
.partner_links .item {
  width: calc((100% - 32px) / 4);
}
@media only screen and (max-width: 768px) {
  .partner_links .item {
    width: 100%;
  }
}
.partner_links a {
  text-decoration: none;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 20px;
}
.partner_links .ttl {
  text-align: center;
  margin: 0 0 1em;
  font-size: 14px;
  line-height: 1;
}
.partner_links .img_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 210px;
  height: 56px;
  aspect-ratio: 210/56;
}
.partner_links img {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

div:has(> .grecaptcha-badge) {
  width: 100% !important;
  position: relative !important;
}
@media only screen and (max-width: 768px) {
  div:has(> .grecaptcha-badge) {
    width: 100vw !important;
  }
}

.grecaptcha-badge {
  bottom: 100px !important;
  position: absolute !important;
}

/* page_parts
---------------------------------------------------------------- */
.page_mv_s,
.page_mv_m,
.page_mv_l {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  background: #999;
  color: #fff;
}
.page_mv_s .inner,
.page_mv_m .inner,
.page_mv_l .inner {
  z-index: 2;
}
.page_mv_s::before,
.page_mv_m::before,
.page_mv_l::before {
  content: "";
  display: block;
  width: calc((100% - 1024px) / 2 + 310px + 100px);
  height: 100%;
  position: absolute;
  background: #666;
  z-index: 1;
  top: 0;
  left: -200px;
  margin: auto;
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
}
@media only screen and (max-width: 768px) {
  .page_mv_s::before,
  .page_mv_m::before,
  .page_mv_l::before {
    left: -45%;
    width: 100%;
  }
}
.page_color_bg .page_mv_s::before,
.page_color_bg .page_mv_m::before,
.page_color_bg .page_mv_l::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#54659f), to(#50a2a8));
  background-image: linear-gradient(#54659f 0%, #50a2a8 100%);
}
.page_color_sb .page_mv_s::before,
.page_color_sb .page_mv_m::before,
.page_color_sb .page_mv_l::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1ba4d5), to(#aad9dd));
  background-image: linear-gradient(#1ba4d5 0%, #aad9dd 100%);
}
.page_color_o .page_mv_s::before,
.page_color_o .page_mv_m::before,
.page_color_o .page_mv_l::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ff983f), to(#fdd213));
  background-image: linear-gradient(#ff983f 0%, #fdd213 100%);
}
.page_color_pb .page_mv_s::before,
.page_color_pb .page_mv_m::before,
.page_color_pb .page_mv_l::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#172B80), to(#1E5882));
  background-image: linear-gradient(#172B80 0%, #1E5882 100%);
}
.page_color_n .page_mv_s::before,
.page_color_n .page_mv_m::before,
.page_color_n .page_mv_l::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#172780), to(#227483));
  background-image: linear-gradient(#172780 0%, #227483 100%);
}

.page_mv_s {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(24, 38, 114)), to(rgb(29, 76, 117)));
  background: linear-gradient(180deg, rgb(24, 38, 114) 0%, rgb(29, 76, 117) 100%);
  height: 172px;
}
.page_mv_s::before {
  content: none;
}
.page_mv_m {
  height: 420px;
}
@media only screen and (max-width: 768px) {
  .page_mv_m {
    height: 300px;
  }
}

.page_mv_l {
  height: 660px;
}
@media only screen and (max-width: 768px) {
  .page_mv_l {
    height: 494px;
  }
}

.page_mv_bgimg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.page_mv_ttl_wrap {
  padding-top: 45px;
  height: auto;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .page_mv_ttl_wrap {
    padding-top: 70px;
  }
}

.page_mv_subttl {
  margin: 0;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .page_mv_subttl {
    font-size: 4.8vw;
  }
}

.page_mv_ttl {
  font-size: 58px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 1em;
  text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
  padding: 0.1em 0;
}
@media only screen and (max-width: 768px) {
  .page_mv_ttl {
    font-size: 8.5vw;
  }
}
.page_mv_s .page_mv_ttl {
  margin-top: auto;
}

.page_mv_lead {
  font-size: 30px;
  line-height: 1.6;
  margin-top: 1em;
}
@media only screen and (max-width: 768px) {
  .page_mv_lead {
    font-size: 4.8vw;
  }
}

.breadcrumb {
  display: block;
}
@media only screen and (min-width: 769px) {
  .breadcrumb .inner {
    width: calc(100% - 40px);
  }
}

.breadcrumb_list {
  background: #fff;
  width: 100%;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  line-height: 1;
  padding: 0.8em 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.breadcrumb_list > .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #8D8D8D;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .breadcrumb_list > .item {
    font-size: 12px;
  }
}
.breadcrumb_list > .item a {
  display: block;
  text-decoration: none;
  color: #8D8D8D;
}
.breadcrumb_list > .item::after {
  content: ">";
  display: inline-block;
  padding: 0 0.5em;
}
.breadcrumb_list > .item:last-of-type::after {
  content: none;
}

.sec_bg_lg,
.sec_bg_b1,
.sec_bg_b2,
.sec_bg_b3 {
  padding: 90px 0;
}
@media only screen and (max-width: 768px) {
  .sec_bg_lg,
  .sec_bg_b1,
  .sec_bg_b2,
  .sec_bg_b3 {
    padding: 18vw 0;
  }
}
.sec_bg_lg .lead,
.sec_bg_b1 .lead,
.sec_bg_b2 .lead,
.sec_bg_b3 .lead {
  font-size: 24px;
  line-height: 1.7;
  margin: 1em auto;
}
@media only screen and (max-width: 768px) {
  .sec_bg_lg .lead,
  .sec_bg_b1 .lead,
  .sec_bg_b2 .lead,
  .sec_bg_b3 .lead {
    font-size: 18px;
  }
}

.sec_bg_lg {
  background: #EAEAEA;
}

.sec_bg_b1 {
  background-color: #F0F4F7;
}

.sec_bg_b2 {
  background-color: #BED4E8;
}

.sec_bg_b3 {
  background-color: #E4F8FC;
}

.sec_round_bg_msg,
.sec_round,
.sec_round_bg_lg2,
.sec_round_bg_w,
.sec_round_bg_lg,
.sec_round_bg_lbg,
.sec_round_bg_grd {
  border-radius: 45px;
  margin: 40px;
  padding: 90px 0;
  min-width: 944px;
}
@media only screen and (max-width: 768px) {
  .sec_round_bg_msg,
  .sec_round,
  .sec_round_bg_lg2,
  .sec_round_bg_w,
  .sec_round_bg_lg,
  .sec_round_bg_lbg,
  .sec_round_bg_grd {
    border-radius: 6vw;
    padding: 30px 0;
    margin: 10px;
    min-width: 0;
  }
}
.breadcrumb + section .sec_round_bg_msg,
.breadcrumb + section .sec_round,
.breadcrumb + section .sec_round_bg_lg2,
.breadcrumb + section .sec_round_bg_w,
.breadcrumb + section .sec_round_bg_lg,
.breadcrumb + section .sec_round_bg_lbg,
.breadcrumb + section .sec_round_bg_grd {
  margin-top: 0;
}
.sec_round_bg_msg .lead,
.sec_round .lead,
.sec_round_bg_lg2 .lead,
.sec_round_bg_w .lead,
.sec_round_bg_lg .lead,
.sec_round_bg_lbg .lead,
.sec_round_bg_grd .lead {
  font-size: 20px;
  line-height: 1.7;
  margin: 1em auto 80px;
}
@media only screen and (max-width: 768px) {
  .sec_round_bg_msg .lead,
  .sec_round .lead,
  .sec_round_bg_lg2 .lead,
  .sec_round_bg_w .lead,
  .sec_round_bg_lg .lead,
  .sec_round_bg_lbg .lead,
  .sec_round_bg_grd .lead {
    font-size: 18px;
    margin-bottom: 10vw;
  }
}

.sec_round_bg_msg {
  background: -webkit-gradient(linear, left top, left bottom, from(#CFD3E5), to(#D2E3E6));
  background: linear-gradient(#CFD3E5 0%, #D2E3E6 100%);
}

.bg_w,
.sec_round_bg_w {
  background-color: #fff;
}

.bg_lg,
.sec_round_bg_lg {
  background-color: #E8E8E8;
}

.bg_lg2,
.sec_round_bg_lg2 {
  background-color: #F4F4F4;
}

.bg_lbg,
.sec_round_bg_lbg {
  background-color: #ECEEF2;
}

.sec_round_bg_grd {
  background: #666;
  color: #fff;
}
.sec_round_bg_grd.color_bg, .page_color_bg .sec_round_bg_grd {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#54659f), to(#50a2a8));
  background-image: linear-gradient(#54659f 0%, #50a2a8 100%);
}
.sec_round_bg_grd.color_sb, .page_color_sb .sec_round_bg_grd {
  background: -webkit-gradient(linear, left top, left bottom, from(#1ba4d5), to(#aad9dd));
  background: linear-gradient(#1ba4d5 0%, #aad9dd 100%);
}
.sec_round_bg_grd.color_o, .page_color_o .sec_round_bg_grd {
  background: -webkit-gradient(linear, left top, left bottom, from(#ff983f), to(#fdd213));
  background: linear-gradient(#ff983f 0%, #fdd213 100%);
}
.sec_round_bg_grd.color_pg, .page_color_pb .sec_round_bg_grd {
  background: -webkit-gradient(linear, left top, left bottom, from(#495077), to(#6781a0));
  background: linear-gradient(#495077 0%, #6781a0 100%);
}
.sec_round_bg_grd.color_n, .page_color_n .sec_round_bg_grd {
  background: -webkit-gradient(linear, left top, left bottom, from(#172780), to(#227483));
  background: linear-gradient(#172780 0%, #227483 100%);
}
.sec_round_bg_grd .sec_side_txt {
  pointer-events: none;
  opacity: 0.5;
  color: #fff;
  font-family: "Jost", sans-serif;
  line-height: 1;
  text-wrap: nowrap;
  font-weight: 300;
}
@media only screen and (min-width: 769px) {
  .sec_round_bg_grd .sec_side_txt {
    width: 100%;
    position: absolute;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    position: absolute;
    right: -1.2em;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
    font-size: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .sec_round_bg_grd .sec_side_txt {
    font-size: 16vw;
    text-align: center;
    margin-top: 0.5em;
    margin-bottom: -6vw;
  }
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.fw-bold {
  font-weight: bold;
}

.fw-normal {
  font-weight: normal;
}

.c-border_tbl {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #999;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .c-border_tbl {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .c-border_tbl.sp_small {
    font-size: 12px;
  }
}
.c-border_tbl th {
  text-align: center;
  border: 1px solid #999;
  padding: 0.25em;
}
.c-border_tbl td {
  text-align: center;
  background: #fff;
  border: 1px solid #999;
  text-align: center;
  padding: 0.25em;
}
.c-border_tbl thead th {
  background: #656565;
  color: #fff;
}

.foot_contact_sec {
  margin: 0;
  padding: 90px 0;
  min-width: 944px;
  background: -webkit-gradient(linear, left top, left bottom, from(#495077), to(#6781a0));
  background: linear-gradient(#495077 0%, #6781a0 100%);
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .foot_contact_sec {
    padding: 30px 0;
    min-width: 0;
  }
}
.foot_contact_sec .sec_ttl {
  color: #fff;
}
.foot_contact_sec a {
  text-decoration: none;
  color: #fff;
}
.foot_contact_sec .foot_contact_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .foot_contact_sec .foot_contact_list {
    grid-template-columns: 1fr;
    gap: 5vw;
  }
}
.foot_contact_sec .foot_contact_list .item {
  height: 212px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #fff;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 600;
  padding: 1em;
}
@media only screen and (max-width: 768px) {
  .foot_contact_sec .foot_contact_list .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 5.4vw;
  }
}
.foot_contact_sec .foot_contact_list .item::before {
  content: "";
  display: block;
  width: 81px;
  height: 66px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .foot_contact_sec .foot_contact_list .item::before {
    margin-right: 1em;
    width: 2.8em;
    height: 2.5em;
  }
}
.foot_contact_sec .foot_contact_list .item.mail::before {
  background-image: url(../img/common/icon_mail_w.svg);
}
.foot_contact_sec .foot_contact_list .item.tel::before {
  background-image: url(../img/common/icon_tel_w.svg);
}
.foot_contact_sec .foot_contact_list .txt {
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .foot_contact_sec .foot_contact_list .txt {
    margin-top: 0.5em;
  }
}

.page_sec_type02_list {
  list-style: none;
  text-indent: 0;
  padding: 0;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 140px;
}
@media only screen and (max-width: 768px) {
  .page_sec_type02_list {
    gap: 20vw;
  }
}
.page_sec_type02_list > .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}
.page_sec_type02_list > .item .col1 {
  width: 440px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.page_sec_type02_list > .item .col2 {
  width: calc(100% - 440px - 44px);
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-top: 100px;
}
@media only screen and (min-width: 769px) {
  .page_sec_type02_list > .item:nth-child(2n) .col1 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .page_sec_type02_list > .item:nth-child(2n) .col2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (max-width: 768px) {
  .page_sec_type02_list > .item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5vw;
  }
  .page_sec_type02_list > .item .col1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
  .page_sec_type02_list > .item .col2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    padding-top: 0;
  }
}
.page_sec_type02_list .ttl {
  color: #6B80AF;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.45;
  margin-bottom: 0.5em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
@media only screen and (max-width: 768px) {
  .page_sec_type02_list .ttl {
    font-size: 26px;
  }
}
.page_sec_type02_list .txt {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .page_sec_type02_list .txt {
    font-size: 16px;
  }
}

.list_mark_checked_wrap {
  text-align: center;
}
.list_mark_checked_wrap .list_mark_checked {
  display: inline-block;
}

.list_mark_checked > .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
  line-height: 1.4;
  font-size: 20px;
  font-weight: 600;
  margin: 0.8em 0;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .list_mark_checked > .item {
    font-size: 18px;
  }
}
.list_mark_checked > .item span {
  display: inline-block;
  width: calc(100% - 1.8em);
}
.list_mark_checked i {
  display: inline-block;
  width: 1.8em;
  height: 1.4em;
  position: relative;
}
.list_mark_checked i::before {
  content: "";
  display: block;
  width: 1.4em;
  height: 1.4em;
  border: 2px solid #E2E2E2;
  position: relative;
}
.list_mark_checked i::after {
  content: "";
  display: block;
  width: 1em;
  height: 0.6em;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border-left: 4px solid #999;
  border-bottom: 4px solid #999;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  bottom: auto;
  top: 0;
  left: -2px;
  right: 0;
  margin: auto;
}
.list_mark_checked.color-blue {
  color: #6B80AF;
}
.list_mark_checked.color-blue i::after {
  border-color: #2CB6F4;
}
.list_mark_checked.color-orange {
  color: #FF983F;
}
.list_mark_checked.color-orange i::after {
  border-color: #FF983F;
}

.list_mark_checked_wrap + .foot_lead,
.list_mark_checked + .foot_lead {
  font-size: 30px;
  text-align: center;
  margin-top: 2em;
}
@media only screen and (max-width: 768px) {
  .list_mark_checked_wrap + .foot_lead,
  .list_mark_checked + .foot_lead {
    font-size: 26px;
  }
}

.page_sec_body .txt1 {
  font-size: 30px;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 768px) {
  .page_sec_body .txt1 {
    font-size: 26px;
  }
}
.page_sec_body .txt2 {
  line-height: 2;
}

.page_sec_flow_wrap {
  margin: 50px auto;
  height: 220px;
  text-align: center;
}
.page_sec_flow_wrap img {
  height: 100%;
  width: auto;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .page_sec_flow_wrap {
    width: 70vw;
    height: auto;
    margin: 5vw auto;
  }
  .page_sec_flow_wrap img {
    width: 100%;
    height: auto;
  }
}

.num_ttl_list_item .num_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.num_ttl_list_item .num {
  font-family: "Jost", sans-serif;
  font-size: 75px;
  font-weight: 400;
  display: block;
  aspect-ratio: 112/78;
}
@media only screen and (max-width: 768px) {
  .num_ttl_list_item .num {
    font-size: 8vw;
    width: 16vw;
  }
}
.num_ttl_list_item .num img {
  height: 1em;
  width: auto;
  aspect-ratio: 112/78;
}
@media only screen and (max-width: 768px) {
  .num_ttl_list_item .num img {
    height: 100%;
  }
}
.num_ttl_list_item .ttl {
  font-size: 40px;
  font-weight: 500;
  padding: 1em;
  display: block;
}
@media only screen and (max-width: 768px) {
  .num_ttl_list_item .ttl {
    font-size: 5.2vw;
    width: calc(100% - 16vw);
  }
}
.num_ttl_list_item .lead {
  font-size: 24px;
  margin: 1em auto;
}
@media only screen and (max-width: 768px) {
  .num_ttl_list_item .lead {
    font-size: 16px;
  }
}

/* page_example
---------------------------------------------------------------- */
/* page_esco
---------------------------------------------------------------- */
.page_esco_sec01 .col2_wrap_pc {
  grid-template-columns: 500px 386px;
}
@media only screen and (max-width: 768px) {
  .page_esco_sec01 .col2_wrap_pc {
    grid-template-columns: 1fr;
    gap: 10vw;
  }
}

.page_esco_sec03_list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  gap: 54px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 768px) {
  .page_esco_sec03_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
  }
}
.page_esco_sec03_list > .item:last-of-type {
  -ms-flex-item-align: center;
  align-self: center;
}

.page_esco_sec06 .col2_wrap_pc .col1, .page_esco_sec06 .col2_wrap_pc .col2 {
  border: 1px solid #fff;
  border-radius: 28px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page_esco_sec06 .col2_wrap_pc .col1 .ttl_type_round_01, .page_esco_sec06 .col2_wrap_pc .col2 .ttl_type_round_01 {
  margin-bottom: 1em;
}
.page_esco_sec06 .col2_wrap_pc .col1 .ttl_type_round_01.em, .page_esco_sec06 .col2_wrap_pc .col2 .ttl_type_round_01.em {
  background: #5D85C8;
}
.page_esco_sec06 .col2_wrap_pc .col1 img, .page_esco_sec06 .col2_wrap_pc .col2 img {
  margin: auto;
}
.page_esco_sec06 .col2_wrap_pc .col1 .txt, .page_esco_sec06 .col2_wrap_pc .col2 .txt {
  margin-top: 2em;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .page_esco_sec06 .col2_wrap_pc .col1 .txt, .page_esco_sec06 .col2_wrap_pc .col2 .txt {
    margin-top: 1em;
  }
}
.page_esco_sec06 .col2_wrap_pc .col1 {
  width: 420px;
}
.page_esco_sec06 .col2_wrap_pc .col2 {
  width: 580px;
}
.page_esco_sec06 .btn_wrap {
  margin-top: 80px;
  text-align: center;
}
/* page_led-construction
---------------------------------------------------------------- */
.page_led-construction .page_led_sec01 .img_wrap {
  max-width: 830px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .page_led-construction .page_led_sec01 .img_wrap {
    max-width: 60vw;
  }
}
@media only screen and (min-width: 769px) {
  .page_led-construction .page_sec_body {
    grid-template-columns: calc(100% - 685px) 685px;
  }
}
.page_led-construction .page_led_sec05 .btn_wrap {
  text-align: center;
  margin-top: 100px;
}

/* page_air-conditioner-construction
---------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  .page_air-conditioner-construction .page_aircon_sec01 .sec_side_txt {
    font-size: 11.5vw;
  }
}
@media only screen and (min-width: 769px) {
  .page_air-conditioner-construction .page_aircon_sec03 .page_sec_body {
    grid-template-columns: auto 685px;
  }
}
.page_air-conditioner-construction .page_aircon_sec04 .btn_wrap {
  margin-top: 100px;
  text-align: center;
}

/* page_tems
---------------------------------------------------------------- */
@media only screen and (min-width: 769px) {
  .page_tems .page_tems_sec03 .col2_grid_pc {
    grid-template-columns: auto 536px;
  }
}
.page_tems .btn_wrap {
  margin-top: 50px;
}
.page_tems .btn_wrap .col1, .page_tems .btn_wrap .col2 {
  text-align: center;
}

/* page_cubicle-construction
---------------------------------------------------------------- */
@media only screen and (min-width: 769px) {
  .page_cubicle-construction .page_cubicle_sec01 .img_wrap {
    width: 515px;
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .page_cubicle-construction .page_cubicle_sec01 .sec_side_txt {
    font-size: 13vw;
  }
}
@media only screen and (min-width: 769px) {
  .page_cubicle-construction .page_cubicle_sec04 .page_sec_body {
    grid-template-columns: 52% 38%;
    gap: 98px;
  }
}
.page_cubicle-construction .page_cubicle_sec04 .btn_wrap {
  text-align: center;
  margin-top: 50px;
}
.page_cubicle-construction .page_cubicle_sec05 .btn_wrap {
  text-align: center;
  margin-top: 50px;
}

/* page_evcharge
---------------------------------------------------------------- */
@media only screen and (min-width: 769px) {
  .page_evcharge .page_evcharge_sec01 .img_wrap {
    width: 515px;
    margin: auto;
  }
}

.page_evcharge_data_sec .num_ttl_list_item {
  margin-top: 50px;
}
.page_evcharge_data_sec .evcharge_data_tbl {
  font-size: 30px;
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #707070;
}
@media only screen and (max-width: 768px) {
  .page_evcharge_data_sec .evcharge_data_tbl {
    font-size: 14px;
  }
}
.page_evcharge_data_sec .evcharge_data_tbl th {
  text-align: left;
  background: #D8DEEB;
  border-bottom: 1px solid #707070;
  padding: 0.5em;
}
.page_evcharge_data_sec .evcharge_data_tbl td {
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #707070;
  border-left: 1px solid #707070;
  text-align: right;
  padding: 0.5em;
}
.page_evcharge_data_sec .graph {
  max-width: 790px;
}

.page_evcharge_subsidy_sec .img_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 794px;
  margin: 50px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page_evcharge_subsidy_sec .img_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4%;
  }
}
@media only screen and (max-width: 768px) {
  .page_evcharge_subsidy_sec .img_wrap img {
    width: 48%;
  }
}
.page_evcharge_subsidy_sec .img_wrap .txt {
  text-align: center;
}
.page_evcharge_subsidy_sec .img_wrap .txt .txt1 {
  font-size: 24px;
}
.page_evcharge_subsidy_sec .img_wrap .txt .txt2 {
  font-size: 45px;
  color: #6B80AF;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .page_evcharge_subsidy_sec .img_wrap .txt .txt2 {
    font-size: 36px;
    margin: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .page_evcharge_subsidy_sec .img_wrap .txt {
    width: 100%;
    margin-top: 10px;
  }
}
.page_evcharge_subsidy_sec .btn_wrap {
  text-align: center;
  margin: 50px auto;
}
.page_evcharge_subsidy_sec .evcharge_subsidy_list {
  list-style: none;
  font-size: 18px;
  line-height: 1.5;
}
.page_evcharge_subsidy_sec .evcharge_subsidy_list .evcharge_subsidy_list_item {
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em 0.1em;
  margin: 0.5em 0;
}
.page_evcharge_subsidy_sec .evcharge_subsidy_list .evcharge_subsidy_list_item::before {
  content: "■";
  color: #6B80AF;
  display: inline-block;
}

.page_evcharge_flow_sec .btn_wrap {
  margin: 50px auto;
  text-align: center;
}

/* page_blog_archive
---------------------------------------------------------------- */
@media only screen and (min-width: 769px) {
  .blog_archive_body_wrap {
    display: grid;
    grid-template-columns: calc((100% - 1024px) / 2 + 144px) calc((100% - 1024px) / 2 + 880px);
  }
}
.blog_archive_body_wrap .blog_archive_side {
  background: #F4F4F4;
}
@media only screen and (max-width: 768px) {
  .blog_archive_body_wrap .blog_archive_side {
    margin-bottom: 5vw;
    background: transparent;
  }
}
.blog_archive_body_wrap .blog_archive_side a {
  text-decoration: none;
  color: #000;
}
@media only screen and (min-width: 769px) {
  .blog_archive_body_wrap .blog_archive_side .inner {
    width: 250px;
    margin: 0 0 auto auto;
  }
}
@media only screen and (max-width: 768px) {
  .blog_archive_body_wrap .blog_archive_side .inner {
    margin: auto;
  }
}
@media only screen and (min-width: 769px) {
  .blog_archive_body_wrap .blog_archive_main {
    width: 880px;
  }
}
@media only screen and (min-width: 769px) {
  .blog_archive_body_wrap .blog_archive_main .inner {
    width: 812px;
    margin: auto;
  }
}

.blog_side_category_nav {
  background: #F4F4F4;
  border-radius: 10px;
  padding: 1rem 0;
}
@media only screen and (max-width: 768px) {
  .blog_side_category_nav {
    padding: 10px;
  }
}

.blog_side_category_nav_ttl {
  font-size: 26px;
  line-height: 1.2;
  color: #121946;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .blog_side_category_nav_ttl {
    font-size: 20px;
  }
}
.blog_side_category_nav_ttl::after {
  content: "";
  background: url(../img/common/icon_arrw_up.svg) center center no-repeat;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
  aspect-ratio: 1/1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.blog_side_category_nav_ttl.open_btn {
  cursor: pointer;
}
.blog_side_category_nav_ttl.open_btn::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.blog_side_category_nav_ttl.close_btn {
  cursor: pointer;
}
.blog_side_category_nav_ttl.close_btn::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.blog_side_category_nav_list {
  font-size: 18px;
  padding: 0.5em 0 1em 1em;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  .blog_side_category_nav_list {
    font-size: 16px;
  }
}
.blog_side_category_nav_list .list_item {
  padding: 0.2em;
}
.blog_archive_list {
  list-style: none;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .blog_archive_list {
    grid-template-columns: 1fr;
  }
}
.blog_archive_list a {
  text-decoration: none;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .blog_archive_list .list_item {
    display: grid;
    grid-template-columns: 32vw auto;
    gap: 9px;
  }
}
.blog_archive_list .list_item_img {
  display: block;
  aspect-ratio: 384/264;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .blog_archive_list .list_item_img {
    border-radius: 10px;
  }
}
.blog_archive_list .list_item_img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog_archive_list .list_item_body {
  padding: 0.4rem 0;
}
.blog_archive_list .list_item_datetime {
  display: block;
  color: #6E9BAC;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .blog_archive_list .list_item_datetime {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0.2em;
  }
}
.blog_archive_list .list_item_case_corp {
  display: block;
  color: #6E9BAC;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .blog_archive_list .list_item_case_corp {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0.2em;
  }
}
.blog_archive_list .list_item_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2em;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .blog_archive_list .list_item_tags {
    font-size: 12px;
  }
}
.blog_archive_list .list_item_tags > * {
  display: inline-block;
  margin-right: 0.2em;
  font-size: 14px;
  background: #1E5582;
  color: #fff;
  line-height: 1;
  padding: 0.4em 0.6em;
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  .blog_archive_list .list_item_tags > * {
    font-size: 12px;
  }
}
.blog_archive_list .list_item_txt {
  padding: 0.5em 0;
  line-height: 1.8;
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .blog_archive_list .list_item_txt {
    font-size: 20px;
  }
}

/* page_blog_detail
---------------------------------------------------------------- */
.blog_detail_body_wrap {
  color: #212121;
}
@media only screen and (min-width: 769px) {
  .blog_detail_body_wrap {
    display: grid;
    grid-template-columns: calc((100% - 1024px) / 2 + 800px) auto;
  }
}
@media only screen and (min-width: 769px) {
  .blog_detail_body_wrap .blog_detail_side {
    padding-block: 30px;
  }
  .blog_detail_body_wrap .blog_detail_side.is-sticky {
    -ms-flex-item-align: start;
        align-self: start;
    position: sticky;
    top: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .blog_detail_body_wrap .blog_detail_side {
    margin-bottom: 5vw;
    background: transparent;
  }
}
.blog_detail_body_wrap .blog_detail_side a {
  text-decoration: none;
  color: #000;
}
@media only screen and (min-width: 769px) {
  .blog_detail_body_wrap .blog_detail_side .inner {
    width: 250px;
    margin: 0 auto auto 70px;
  }
}
@media only screen and (max-width: 768px) {
  .blog_detail_body_wrap .blog_detail_side .inner {
    margin: auto;
  }
}
@media only screen and (min-width: 769px) {
  .blog_detail_body_wrap .blog_detail_main {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 769px) {
  .blog_detail_body_wrap .blog_detail_main .inner {
    width: 820px;
    margin: auto 0 auto auto;
  }
}

.blog_detail_ttl {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .blog_detail_ttl {
    font-size: 24px;
  }
}

.blog_detail_case_corp {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #6E9BAC;
}
@media only screen and (max-width: 768px) {
  .blog_detail_case_corp {
    font-size: 14px;
  }
}

.blog_detail_case_name {
  display: block;
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .blog_detail_case_name {
    font-size: 16px;
  }
}

.blog_detail_tags {
  font-size: 14px;
  margin-bottom: 1em;
}
.blog_detail_tags a {
  text-decoration: none;
}
.blog_detail_tags > * {
  display: inline-block;
  margin-right: 0.2em;
  background: #1E5582;
  color: #fff;
  line-height: 1;
  padding: 0.4em 0.6em;
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  .blog_detail_tags > * {
    font-size: 12px;
  }
}

.blog_detail_datetime_case,
.blog_detail_datetime {
  display: block;
  color: #6E9BAC;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0.2em;
}
@media only screen and (max-width: 768px) {
  .blog_detail_datetime_case,
  .blog_detail_datetime {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0.2em;
  }
}

.blog_detail_datetime_case {
  text-align: right;
}

.blog_detail_featured_image {
  margin-top: 30px;
}
.blog_detail_featured_image img {
  max-width: 100%;
  height: auto;
}

.blog_detail_main_body {
  padding: 1em 0 4em;
  border-bottom: 2px solid #E5E5E5;
}
.blog_detail_main_body h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.6;
  margin: 2em 0 1em;
}
@media only screen and (max-width: 768px) {
  .blog_detail_main_body h2 {
    font-size: 20px;
  }
}
.blog_detail_main_body h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 1.5em 0 1em;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .blog_detail_main_body h3 {
    font-size: 18px;
  }
}
.blog_detail_main_body p {
  line-height: 2;
  margin: 1em 0;
}
.blog_detail_main_body .wp-block-button__link {
  background: #d74e19;
  color: #fff;
  margin-top: 1em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .blog_detail_main_body .wp-block-button__link {
    font-size: 1em;
  }
}
.blog_detail_main_body .blue .wp-block-button__link {
  background-color: #5D85C8;
}
.blog_detail_main_body .green .wp-block-button__link {
  background-color: #50a2a8;
}
.blog_detail_main_body .red .wp-block-button__link {
  background-color: #D2232A;
}
.blog_detail_main_body .wp-block-table .bg_light_orange,
.blog_detail_main_body .wp-block-table .bg_light_orange th,
.blog_detail_main_body .wp-block-table .bg_light_orange td {
  background-color: #ffe9d9;
}

.blog_side_post_nav_ttl {
  font-size: 16px;
  font-weight: 600;
}

.blog_side_post_nav_list {
  list-style: none;
}
.blog_side_post_nav_list .list_item {
  padding: 20px 0;
}
.blog_side_post_nav_list .list_item_img {
  display: block;
  aspect-ratio: 384/264;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .blog_side_post_nav_list .list_item_img {
    display: none;
  }
}
.blog_side_post_nav_list .list_item_img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog_side_post_nav_list .list_item_datetime {
  display: block;
  color: #6E9BAC;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .blog_side_post_nav_list .list_item_datetime {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0.2em;
  }
}
.blog_side_post_nav_list .list_item_txt {
  font-size: 14px;
}

/* 目次プラグイン
---------------------------------------------------------------- */
.page_blog_detail #ez-toc-container-sidebar,
.page_blog_detail div#ez-toc-container {
  padding: 1em 2em;
  margin-top: 2em !important;
  margin-bottom: 2em !important;
}
@media only screen and (max-width: 768px) {
  .page_blog_detail #ez-toc-container-sidebar,
  .page_blog_detail div#ez-toc-container {
    width: 95%;
    padding: 0.5em;
  }
}
.page_blog_detail #ez-toc-container-sidebar .ez-toc-title,
.page_blog_detail div#ez-toc-container .ez-toc-title {
  display: block;
  width: 100%;
  padding: 0.8em 1.2em;
}
.page_blog_detail #ez-toc-container-sidebar .ez-toc-list,
.page_blog_detail div#ez-toc-container .ez-toc-list {
  padding-bottom: 1.4em;
}
@media only screen and (max-width: 768px) {
  .page_blog_detail #ez-toc-container-sidebar .ez-toc-list,
  .page_blog_detail div#ez-toc-container .ez-toc-list {
    font-size: 14px;
  }
}
.page_blog_detail #ez-toc-container-sidebar .ez-toc-list .ez-toc-link,
.page_blog_detail div#ez-toc-container .ez-toc-list .ez-toc-link {
  padding: 0.2em 1.5em;
}

#js-sidebar-toc-target #ez-toc-container {
  padding: 0;
  margin-top: 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #js-sidebar-toc-target #ez-toc-container {
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  .blog_detail_body_wrap.is-sidebar-toc-ready .blog_detail_main #ez-toc-container {
    display: none;
  }
}
/* page_inquiry
---------------------------------------------------------------- */
.page_inquiry .wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.form_head_lead {
  width: 750px;
  margin: auto;
  font-size: 20px;
  line-height: 2;
  margin-bottom: 2em;
  padding-top: 2em;
}
@media only screen and (max-width: 768px) {
  .form_head_lead {
    padding: 0;
    width: 100%;
    font-size: 16px;
  }
}

.form_item_wrap {
  width: 600px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .form_item_wrap {
    width: 100%;
  }
}

.form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1em auto;
  background: rgb(240, 240, 240);
  gap: 0;
}
@media only screen and (max-width: 768px) {
  .form_item {
    display: block;
  }
}
.form_item .form_item_label {
  text-wrap: nowrap;
  padding: 0.2rem;
  font-weight: 500;
  color: #000;
}
.form_item .form_item_input {
  width: 100%;
  padding: 0.2rem;
}
.form_item label {
  display: inline-block;
  padding: 0.8em 0.5em;
}
.form_item input, .form_item select, .form_item textarea {
  width: 100%;
  background: transparent;
  background: rgb(240, 240, 240);
  padding: 0.8em 0.2em;
}
.form_item textarea {
  min-height: 6em;
  line-height: 1.4;
  padding: 0.2em;
}
.form_item .required_txt {
  color: #d74e19;
  font-size: 0.8em;
}

.form_btn_wrap {
  text-align: center;
  padding: 1em 0 5em;
}

.form_item_privacy {
  padding: 1em 0 4em;
  text-align: center;
}
.form_item_privacy a {
  color: #000;
}
.form_item_privacy .wpcf7-list-item {
  margin-left: 0;
}

.form_item_submit {
  position: relative;
}
.form_item_submit .wpcf7-spinner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.dl_thanks_content_sec {
  font-size: 20px;
  margin: auto;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .dl_thanks_content_sec {
    width: 100%;
    padding-top: 60px;
    font-size: 16px;
  }
}
.dl_thanks_content_sec p {
  margin-block: 0.5em;
}
.dl_thanks_content_sec p.small {
  font-size: 0.8em;
}
.dl_thanks_content_sec h1 {
  text-align: center;
}

.thanks_head_lead {
  width: 100%;
  margin: auto;
  margin-bottom: 1em;
  padding-top: 1em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .thanks_head_lead {
    width: 100%;
    text-align: left;
  }
}

.dl_thanks_content {
  width: 100%;
  margin: auto;
  margin-bottom: 1em;
  padding-top: 1em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .dl_thanks_content {
    width: 100%;
    text-align: left;
  }
}

.dl_thanks_download {
  margin: 1em auto 2em;
  text-align: center;
}
.dl_thanks_download .dl_thanks_download_btn {
  line-height: 1.5;
}

.thanks_btn_wrap {
  text-align: center;
  padding: 2em 0 5em;
}
.thanks_btn_wrap .btn {
  margin: 10px;
  line-height: 1;
}

/* page_subsidy
---------------------------------------------------------------- */
.subsidy_list {
  margin: 3em auto;
}

.subsidy_list_ttl {
  font-size: 40px;
  font-weight: 600;
  padding: 0.4em 0;
  margin: auto;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .subsidy_list_ttl {
    font-size: 20px;
  }
}

.subsidy_list_item {
  border-bottom: #C7C7C7 1px solid;
  padding: 1em 0;
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .subsidy_list_item {
    font-size: 16px;
  }
}
.subsidy_list_item a {
  text-decoration: none;
  color: #656565;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .subsidy_list_item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.subsidy_list_item .subject {
  display: block;
}
.subsidy_list_item .more_right_btn {
  text-wrap: nowrap;
}
@media only screen and (max-width: 768px) {
  .subsidy_list_item .more_right_btn {
    margin: 1em auto auto;
  }
}

.page_subsidy_support_sec .sec_num01 .col2_grid_pc {
  max-width: 820px;
  margin: auto;
  gap: 138px;
  color: #6B80AF;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .page_subsidy_support_sec .sec_num01 .col2_grid_pc {
    gap: 60px;
  }
}
.page_subsidy_support_sec .sec_num01 .col2_grid_pc .col1 {
  position: relative;
}
.page_subsidy_support_sec .sec_num01 .col2_grid_pc .col1::after {
  content: "";
  display: block;
  width: 138px;
  height: 44px;
  background: url(../img/common/arrow3_r_g.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  right: -138px;
  top: 0;
  left: auto;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .page_subsidy_support_sec .sec_num01 .col2_grid_pc .col1::after {
    width: 60px;
    top: auto;
    right: 0;
    left: 0;
    bottom: -60px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.page_subsidy_support_sec .notice {
  margin: 2em 0 0;
  font-size: 14px;
}
.page_subsidy_support_sec .sec_num02 figure {
  margin-top: 50px;
}

.img_wrap_col1 {
  width: 515px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .img_wrap_col1 {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .tbl_wrap {
    width: 100%;
    overflow-x: auto;
  }
}

.subsidy_jisseki_tbl {
  text-align: left;
  width: 100%;
}
.subsidy_jisseki_tbl th {
  background: #F4F4F4;
  color: #6B80AF;
  vertical-align: middle;
  text-align: center;
  padding: 0.5em;
}
.subsidy_jisseki_tbl td {
  padding: 0.5em;
  background: #fff;
  border-bottom: 1px solid #BCBCBC;
}
.subsidy_jisseki_tbl .td_ttl {
  font-weight: 600;
  font-size: 18px;
}

.subsidy_flow_list {
  width: 846px;
  margin: 50px auto;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 0;
  text-indent: 0;
}
@media only screen and (max-width: 768px) {
  .subsidy_flow_list {
    width: 100%;
    gap: 15vw;
  }
}
.subsidy_flow_list .subsidy_flow_list_item {
  display: grid;
  grid-template-columns: 168px auto;
  gap: 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .subsidy_flow_list .subsidy_flow_list_item {
    grid-template-columns: 1fr;
  }
}
.subsidy_flow_list .subsidy_flow_list_item:nth-child(n+2)::before {
  content: "";
  background: url(../img/common/icon_arrw_up_lb.svg) center center no-repeat;
  background-size: contain;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  width: 34px;
  height: 34px;
  display: block;
  position: absolute;
  top: -2rem;
  left: 67px;
  bottom: auto;
  right: auto;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .subsidy_flow_list .subsidy_flow_list_item:nth-child(n+2)::before {
    left: 0;
    right: 0;
    top: -14vw;
  }
}
.subsidy_flow_list .subsidy_flow_list_item_img {
  padding: 1rem 0;
}
@media only screen and (max-width: 768px) {
  .subsidy_flow_list .subsidy_flow_list_item_img {
    width: 30vw;
    margin: auto;
    padding: 0;
  }
}
.subsidy_flow_list .subsidy_flow_list_item_txt .num_txt {
  border-bottom: 1px solid #CAD8EF;
  font-weight: 500;
  color: #212121;
  padding: 1rem 1.5rem;
}
@media only screen and (max-width: 768px) {
  .subsidy_flow_list .subsidy_flow_list_item_txt .num_txt {
    padding: 0.5rem 0;
  }
}
.subsidy_flow_list .subsidy_flow_list_item_txt .num_txt .num {
  color: #5F8CD1;
  font-size: 30px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  margin-right: 0.5em;
}
@media only screen and (max-width: 768px) {
  .subsidy_flow_list .subsidy_flow_list_item_txt .num_txt .num {
    font-size: 5.5vw;
  }
}
.subsidy_flow_list .subsidy_flow_list_item_txt .num_txt .num_ttl {
  font-size: 28px;
}
@media only screen and (max-width: 768px) {
  .subsidy_flow_list .subsidy_flow_list_item_txt .num_txt .num_ttl {
    font-size: 5vw;
  }
}
.subsidy_flow_list .subsidy_flow_list_item_txt .flow_txt {
  padding: 1rem 1.5rem;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .subsidy_flow_list .subsidy_flow_list_item_txt .flow_txt {
    padding: 1em 0;
  }
}
.subsidy_flow_list .subsidy_flow_list_item_txt .flow_txt p {
  line-height: 1.8;
}
.subsidy_flow_list .subsidy_flow_list_item_txt .flow_txt .small {
  font-size: 0.875em;
}

/* page_subsidy
---------------------------------------------------------------- */
.page_subsidy .page_subsidy-solar_sec01 .img_wrap {
  max-width: 514px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .page_subsidy .page_subsidy-solar_sec01 .img_wrap {
    max-width: 100%;
  }
}

/* page_solar
---------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  .page_solar_sec01 .sec_side_txt {
    font-size: 11vw;
  }
}

.page_solar_merit_sec .sec_num01 .img_wrap {
  width: 696px;
  margin: 1em auto;
}
@media only screen and (max-width: 768px) {
  .page_solar_merit_sec .sec_num01 .img_wrap {
    width: 100%;
  }
}

.solar_merit_img03_wrap {
  display: grid;
  grid-template-columns: 254px 254px 300px;
  gap: 60px;
  padding: 58px 0;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}
.solar_merit_img03_wrap .txt {
  margin-top: 0.5em;
}
@media only screen and (max-width: 768px) {
  .solar_merit_img03_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4%;
    padding: 0;
    font-size: 14px;
  }
  .solar_merit_img03_wrap .col1, .solar_merit_img03_wrap .col2 {
    width: 48%;
  }
  .solar_merit_img03_wrap .col3 {
    width: 60%;
    margin: auto;
  }
}

.page_solar_sb_sec .col2_grid_pc {
  grid-template-columns: calc(100% - 426px) 426px;
  gap: 86px;
}
@media only screen and (max-width: 768px) {
  .page_solar_sb_sec .col2_grid_pc {
    grid-template-columns: 1fr;
    gap: 10vw;
  }
}
.page_solar_sb_sec .col2_grid_pc .lead {
  font-size: 24px;
  margin-bottom: 2em;
}
@media only screen and (max-width: 768px) {
  .page_solar_sb_sec .col2_grid_pc .lead {
    font-size: 22px;
    margin-bottom: 1em;
  }
}
.page_solar_sb_sec .col2_grid_pc .col2 {
  -ms-flex-item-align: self-end;
  align-self: self-end;
}

.page_solar_subsidy_sec .lead {
  text-align: center;
  font-weight: 600;
}
.page_solar_subsidy_sec .solar_sub_list {
  list-style: none;
  line-height: 1.8;
}
.page_solar_subsidy_sec .solar_sub_list .item {
  margin: 2em auto;
}
.page_solar_subsidy_sec .solar_sub_list a {
  font-size: 18px;
  color: #3C7DA5;
}

.page_solar_flow_sec .lead {
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .page_solar_flow_sec .lead {
    font-size: 22px;
  }
}
.page_solar_flow_sec .btn_wrap {
  text-align: center;
  background: #F4F4F4;
  padding: 100px 0;
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .page_solar_flow_sec .btn_wrap {
    margin-top: 50px;
  }
}

/* page_alcure
---------------------------------------------------------------- */
@media only screen and (min-width: 769px) {
  .page_alcure_sec01 .col2_grid_pc {
    grid-template-columns: 500px calc(100% - 500px);
  }
}
.page_alcure_sec01 .col2_grid_pc .col2 {
  padding: 0 45px;
}
.page_alcure_sec01 .btn_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .page_alcure_sec01 .btn_wrap {
    grid-template-columns: 1fr;
  }
}
.page_alcure_sec01 .btn_wrap a {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.dl_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .dl_list {
    grid-template-columns: 1fr;
    gap: 16vw;
  }
}
.dl_list .dl_list_item .txt1 {
  font-size: 24px;
  font-weight: 500;
  color: #FF983F;
  margin: 1rem 0;
}
@media only screen and (max-width: 768px) {
  .dl_list .dl_list_item .txt1 {
    margin-bottom: 0;
    font-size: 22px;
  }
}
.dl_list .dl_list_item .txt2 {
  line-height: 1.8;
  min-height: 5rem;
  padding: 0.5rem 0;
}
@media only screen and (max-width: 768px) {
  .dl_list .dl_list_item .txt2 {
    min-height: 0;
  }
}
.dl_list .dl_list_item .txt3 {
  font-size: 24px;
  margin: 0.5em auto;
  min-height: 5em;
}
@media only screen and (max-width: 768px) {
  .dl_list .dl_list_item .txt3 {
    font-size: 18px;
    min-height: 0;
  }
}
.dl_list .dl_list_item .small {
  font-size: 0.73em;
}
.dl_list .dl_list_item .dl_list_btn_wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  font-size: 18px;
}
.dl_list .dl_list_item .dl_list_btn_wrap a {
  width: 85%;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .dl_list .dl_list_item .dl_list_btn_wrap a {
    width: 90%;
  }
}

@media only screen and (max-width: 768px) {
  .alcure_merit01_img {
    margin: 1em auto;
  }
}

.alcure_merit01_list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .alcure_merit01_list {
    grid-template-columns: 1fr;
  }
}
.alcure_merit01_list .merit_item {
  position: relative;
}
.alcure_merit01_list .merit_item:nth-child(n+2):before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_arrw_up_lb2.svg) center center no-repeat;
  background-size: contain;
  top: 0.3em;
  left: -30px;
  margin: auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media only screen and (max-width: 768px) {
  .alcure_merit01_list .merit_item:nth-child(n+2):before {
    height: 40px;
    left: 0;
    right: 0;
    top: -40px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.alcure_merit01_list .merit_item .tag_ttl {
  width: 100%;
}
.alcure_merit01_list .merit_item .txt {
  font-weight: 600;
  line-height: 1.8;
}

.alcure_merit02_body {
  margin: 50px 0 auto;
}

.alcure_merit02_list1 {
  grid-template-columns: auto auto 358px;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .alcure_merit02_list1 {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .alcure_merit02_2 {
    width: 44vw;
    margin: auto;
    margin-top: 5vw;
  }
}

.alcure_merit03_body {
  height: 510px;
  position: relative;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .alcure_merit03_body {
    height: auto;
  }
}
.alcure_merit03_body .bgi {
  width: 788px;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .alcure_merit03_body .bgi {
    position: static;
  }
}
.alcure_merit03_body .txt1 {
  color: #FF983F;
  font-weight: 600;
  text-align: left;
}
.alcure_merit03_body .txt1 p {
  display: inline-block;
  text-align: center;
  line-height: 1;
}
.alcure_merit03_body .txt1 p span {
  font-size: 32px;
}
@media only screen and (max-width: 768px) {
  .alcure_merit03_body .txt1 p span {
    font-size: 18px;
  }
}
.alcure_merit03_body .txt1 p span:last-child {
  font-size: 76px;
}
@media only screen and (max-width: 768px) {
  .alcure_merit03_body .txt1 p span:last-child {
    font-size: 43px;
  }
}
.alcure_merit03_body .txt2 p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.alcure_merit03_body .txt2 p:first-of-type {
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 0.2em;
}
@media only screen and (max-width: 768px) {
  .alcure_merit03_body .txt2 p:first-of-type {
    font-size: 22px;
  }
}

.page_alcure_evidence_sec .img_wrap {
  width: 756px;
  max-width: 100%;
  margin: 50px auto;
}
.page_alcure_evidence_sec .btn_wrap {
  margin: 30px auto auto;
  width: 832px;
  max-width: 90%;
}

.page_alcure_performance_sec .img_wrap {
  grid-template-columns: 268px 525px;
  gap: 50px;
  width: 850px;
  max-width: 100%;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .page_alcure_performance_sec .img_wrap {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .page_alcure_performance_sec .img_wrap .img1 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 46vw;
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .page_alcure_performance_sec .img_wrap .img2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.page_alcure_performance_sec .lead {
  font-size: 40px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page_alcure_performance_sec .lead {
    font-size: 24px;
  }
}
.page_alcure_performance_sec .btn_wrap {
  margin: 50px 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page_alcure_performance_sec .btn_wrap {
    margin-top: 10vw;
  }
}
.page_alcure_performance_sec .video_wrap {
  aspect-ratio: 560/315;
  width: 780px;
  max-width: 100%;
  margin: 100px auto 0;
}
@media only screen and (max-width: 768px) {
  .page_alcure_performance_sec .video_wrap {
    margin-top: 50px;
  }
}
.page_alcure_performance_sec .video_wrap iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 560/315;
}

.page_alcure_ability_sec .lead {
  margin-bottom: auto;
}
.page_alcure_ability_sec .alcure_ability_body {
  margin-top: 50px;
}
.page_alcure_ability_sec .alcure_ability_tbl {
  min-width: 100%;
  border-collapse: collapse;
  border: 1px solid #A3A3E0;
}
@media only screen and (max-width: 768px) {
  .page_alcure_ability_sec .alcure_ability_tbl {
    font-size: 14px;
  }
}
.page_alcure_ability_sec .alcure_ability_tbl .thead th {
  background: #A3A3E0;
  color: #fff;
  text-align: center;
  border-left: 1px solid #fff;
  text-wrap: nowrap;
  padding: 0.2em;
  font-weight: 500;
}
.page_alcure_ability_sec .alcure_ability_tbl .tbody th {
  background: #D1D1F0;
  text-align: center;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  padding: 0.2em;
  text-wrap: nowrap;
  font-weight: 500;
}
.page_alcure_ability_sec .alcure_ability_tbl .tbody td {
  background: #fff;
  text-align: center;
  text-align: center;
  border: 1px solid #D1D1F0;
  height: 2em;
  padding: 0.2em;
  text-wrap: nowrap;
}

.page_alcure_lineup_sec .alcure_lineup_txt1 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin: 1em auto;
}
@media only screen and (max-width: 768px) {
  .page_alcure_lineup_sec .alcure_lineup_txt1 {
    font-size: 22px;
  }
}
.page_alcure_lineup_sec .alcure_lineup_body1 {
  width: 880px;
  max-width: 100%;
  margin: auto auto 100px;
}
.page_alcure_lineup_sec .alcure_lineup_tbl2,
.page_alcure_lineup_sec .alcure_lineup_tbl {
  min-width: 100%;
  border-collapse: collapse;
  border: 4px solid #fff;
}
@media only screen and (max-width: 768px) {
  .page_alcure_lineup_sec .alcure_lineup_tbl2,
  .page_alcure_lineup_sec .alcure_lineup_tbl {
    font-size: 14px;
  }
}
.page_alcure_lineup_sec .alcure_lineup_tbl2 .thead th,
.page_alcure_lineup_sec .alcure_lineup_tbl .thead th {
  font-weight: 600;
  background: #A6CFDC;
  border: 1px solid #fff;
  text-align: center;
  padding: 0.2em;
}
.page_alcure_lineup_sec .alcure_lineup_tbl2 .thead td,
.page_alcure_lineup_sec .alcure_lineup_tbl .thead td {
  background: #fff;
  border: 1px solid #fff;
  text-align: center;
}
.page_alcure_lineup_sec .alcure_lineup_tbl2 .thead td img,
.page_alcure_lineup_sec .alcure_lineup_tbl .thead td img {
  width: 152px;
}
.page_alcure_lineup_sec .alcure_lineup_tbl2 .tbody th,
.page_alcure_lineup_sec .alcure_lineup_tbl .tbody th {
  font-weight: 600;
  background: #fff;
  text-align: left;
  padding: 0.2em;
}
.page_alcure_lineup_sec .alcure_lineup_tbl2 .tbody td,
.page_alcure_lineup_sec .alcure_lineup_tbl .tbody td {
  background: #fff;
  text-align: center;
  height: 2em;
  padding: 0.2em 0.4em;
  border-left: 1px solid #707070;
}
.page_alcure_lineup_sec .alcure_lineup_tbl2 .tbody tr:nth-child(2n) th, .page_alcure_lineup_sec .alcure_lineup_tbl2 .tbody tr:nth-child(2n) td,
.page_alcure_lineup_sec .alcure_lineup_tbl .tbody tr:nth-child(2n) th,
.page_alcure_lineup_sec .alcure_lineup_tbl .tbody tr:nth-child(2n) td {
  background: #F0F8FF;
}
@media only screen and (min-width: 769px) {
  .page_alcure_lineup_sec .alcure_lineup_tbl2 {
    min-height: 420px;
  }
}
.page_alcure_lineup_sec .alcure_lineup_tbl2_wrap {
  display: grid;
  grid-template-columns: 120px auto;
  gap: 5px;
  background: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page_alcure_lineup_sec .alcure_lineup_tbl2_wrap {
    grid-template-columns: 1fr;
  }
  .page_alcure_lineup_sec .alcure_lineup_tbl2_wrap .img_wrap {
    width: 120px;
    margin: auto;
  }
}
.page_alcure_lineup_sec .btn_wrap1 {
  width: 600px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
  margin: 30px auto;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
.page_alcure_lineup_sec .alcure_lineup_body2 {
  width: 880px;
  max-width: 100%;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .page_alcure_lineup_sec .alcure_lineup_body2 .col2 {
    margin-top: 50px;
  }
}
.page_alcure_lineup_sec .alcure_lineup_body2 .btn_wrap2 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

/* page_alcure-dl
---------------------------------------------------------------- */
.page_alcure-dl_sec01 .lead,
.page_alcure-dl_sec02 .lead {
  width: 670px;
}
@media only screen and (max-width: 768px) {
  .page_alcure-dl_sec01 .lead,
  .page_alcure-dl_sec02 .lead {
    width: 100%;
  }
}

/* page_space
---------------------------------------------------------------- */
.page_space_about_sec .btn_wrap {
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .page_space_about_sec .btn_wrap {
    text-align: center;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .page_space_about_sec .space_about_body .col2 {
    text-align: center;
  }
}
.page_space_about_sec .space_about_body .col2 img {
  width: 259px;
}
@media only screen and (max-width: 768px) {
  .page_space_about_sec .space_about_body .col2 img {
    width: 80%;
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .page_space_about_sec .sec_side_txt {
    font-size: 13vw;
  }
}

.page_space_lineup_sec .space_lineup_list {
  gap: 48px;
}
.page_space_lineup_sec .space_lineup_list .txt1 {
  color: #FF983F;
  font-weight: 600;
  font-size: 30px;
  padding: 0.2em 0;
}
@media only screen and (max-width: 768px) {
  .page_space_lineup_sec .space_lineup_list .txt1 {
    font-size: 20px;
  }
}
.page_space_lineup_sec .space_lineup_list .txt2 {
  line-height: 1.8;
}
.page_space_lineup_sec .btn_wrap {
  background: #FF983F;
  text-align: center;
  padding: 80px 0;
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .page_space_lineup_sec .btn_wrap {
    margin-top: 10vw;
    padding: 15vw 0;
  }
}

/* page_underwater
---------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  .page_underwater_about_sec .sec_side_txt {
    font-size: 13vw;
  }
}

.underwater_about_body .col1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .underwater_about_body .col1 {
    text-align: center;
  }
}
.underwater_about_body .col1 a {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
@media only screen and (max-width: 768px) {
  .underwater_about_body .col1 a {
    margin: auto;
  }
}
.underwater_about_body .col2 {
  text-align: center;
}
.underwater_about_body .col2 img {
  width: 388px;
}
@media only screen and (max-width: 768px) {
  .underwater_about_body .col2 img {
    width: 100%;
  }
}

.page_underwater_case_sec .underwater_case_list {
  gap: 50px 32px;
}
.page_underwater_case_sec .underwater_case_list .txt1 {
  font-size: 18px;
  font-weight: 500;
  padding: 0.2em 0;
}
.page_underwater_case_sec .underwater_case_list .txt2 {
  font-size: 24px;
  font-weight: 500;
}
.page_underwater_case_sec .btn_wrap {
  background: #FF983F;
  text-align: center;
  padding: 80px 0;
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .page_underwater_case_sec .btn_wrap {
    margin-top: 10vw;
    padding: 15vw 0;
  }
}

.last_btn_wrap {
  padding: 40px;
}
@media only screen and (max-width: 768px) {
  .last_btn_wrap {
    padding: 10px;
  }
}
.last_btn_wrap .last_btn_wrap_inner {
  background: #FF983F;
  text-align: center;
  padding: 80px 0;
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .last_btn_wrap .last_btn_wrap_inner {
    margin-top: 10vw;
    padding: 15vw 0;
  }
}
.page_color_o .last_btn_wrap .last_btn_wrap_inner {
  background: #FF983F;
}

/* page_facerecognition
---------------------------------------------------------------- */
.page_facerecognition_sec01 .img_wrap img {
  width: 203px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .page_facerecognition_sec01 .img_wrap img {
    width: 50vw;
  }
}
@media only screen and (max-width: 768px) {
  .page_facerecognition_sec01 .sec_side_txt {
    font-size: 9vw;
  }
}

.page_facerecognition_merit_sec .sec_num01 .img_wrap {
  width: 186px;
  margin: auto;
}
.page_facerecognition_merit_sec .sec_num02 .img_wrap {
  width: 522px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .page_facerecognition_merit_sec .sec_num02 .img_wrap {
    width: 100%;
  }
}
.page_facerecognition_merit_sec .sec_num03 .img_wrap {
  width: 500px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .page_facerecognition_merit_sec .sec_num03 .img_wrap {
    width: 100%;
  }
}
.page_facerecognition_merit_sec .sec_num04 .img_wrap {
  width: 546px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .page_facerecognition_merit_sec .sec_num04 .img_wrap {
    width: 100%;
  }
}

.page_facerecognition_spec_sec .btn_wrap {
  background: #FF983F;
  text-align: center;
  padding: 80px 0;
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .page_facerecognition_spec_sec .btn_wrap {
    margin-top: 10vw;
    padding: 15vw 0;
  }
}

.facerecognition_spec_tbl {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #C7C6C6;
}
.facerecognition_spec_tbl th, .facerecognition_spec_tbl td {
  padding: 0.4rem;
}
.facerecognition_spec_tbl thead th {
  background: #AAAAAA;
  color: #fff;
  text-align: center;
  font-size: 18px;
  text-wrap: nowrap;
}
@media only screen and (max-width: 768px) {
  .facerecognition_spec_tbl thead th {
    font-size: 14px;
  }
}
.facerecognition_spec_tbl thead th + th {
  border-left: 1px solid #fff;
}
.facerecognition_spec_tbl tbody th {
  background: #F0F0F0;
  text-align: left;
  text-wrap: nowrap;
  font-size: 18px;
  border: 1px solid #C7C6C6;
}
@media only screen and (max-width: 768px) {
  .facerecognition_spec_tbl tbody th {
    font-size: 14px;
  }
}
.facerecognition_spec_tbl tbody td {
  border: 1px solid #C7C6C6;
  background: #fff;
  font-size: 14px;
  width: 45%;
}

/* page_epb
---------------------------------------------------------------- */
.page_epb_sec01 .col2_grid_pc .img_wrap img {
  width: 214px;
  margin: auto;
}

.page_epb_package_sec .sec_num01 .img_wrap {
  margin: auto;
}
@media only screen and (min-width: 769px) {
  .page_epb_package_sec .sec_num01 .img_wrap {
    margin-top: 60px;
    width: 706px;
    grid-template-columns: 235px auto;
    gap: 156px;
  }
}
@media only screen and (max-width: 768px) {
  .page_epb_package_sec .sec_num01 .img_wrap {
    width: 80%;
  }
}
.page_epb_package_sec .sec_num02 .img_wrap {
  margin: auto;
}
@media only screen and (min-width: 769px) {
  .page_epb_package_sec .sec_num02 .img_wrap {
    margin-top: 60px;
    width: 930px;
    gap: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .page_epb_package_sec .sec_num02 .img_wrap {
    width: 80%;
  }
}

.page_epb_case_sec .epb_case_body1 {
  text-align: center;
  margin-bottom: 2rem;
}
.page_epb_case_sec .epb_case_body1 .col2_inline_grid_pc {
  grid-template-columns: auto auto;
}
@media only screen and (max-width: 768px) {
  .page_epb_case_sec .epb_case_body1 .col2_inline_grid_pc {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.page_epb_case_sec .epb_case_list {
  gap: 52px;
  margin-bottom: 100px;
}
.page_epb_case_sec .epb_case_list .txt1 {
  font-size: 25px;
  font-weight: 500;
  padding: 0.2em 0;
}
@media only screen and (max-width: 768px) {
  .page_epb_case_sec .epb_case_list .txt1 {
    font-size: 20px;
  }
}
.page_epb_case_sec .epb_case_list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .page_epb_case_sec .epb_case_list2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1em;
  }
}

.epb_product_body .article_ttl {
  background: -webkit-gradient(linear, left top, left bottom, from(#ff983f), to(#fdd213));
  background: linear-gradient(#ff983f 0%, #fdd213 100%);
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.5rem;
  min-height: 4rem;
  line-height: 1;
}
.epb_product_body .article_ttl .small {
  font-size: 0.66em;
  display: inline-block;
}
.epb_product_body .article_sub_ttl {
  font-size: 26px;
  font-weight: 600;
}
.epb_product_body .article_1 {
  margin-bottom: 38px;
}
.epb_product_body .article_1 .article_1_grid {
  margin: auto;
  padding: 30px 0;
}
@media only screen and (min-width: 769px) {
  .epb_product_body .article_1 .article_1_grid {
    grid-template-columns: auto 530px;
    gap: 40px;
  }
}
.epb_product_body .article_1 .article_1_grid .col1 {
  padding: 0 60px;
}
@media only screen and (max-width: 768px) {
  .epb_product_body .article_1 .article_1_grid .col1 {
    padding: 0;
    margin-bottom: 1rem;
  }
}
.epb_product_body .article_1 .list_1_wrap {
  grid-template-columns: auto 77px;
  gap: 0;
  margin: 40px 0;
}
.epb_product_body .article_1 .list_1_wrap .list_ttl {
  background: #ECEEF2;
  font-size: 22px;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
}
.epb_product_body .article_1 .list_1_wrap .list_txt {
  padding: 0.5rem;
}
.epb_product_body .article_1 .list_1_wrap .list_1_img {
  position: relative;
  margin-top: -8px;
}
.epb_product_body .article_list {
  gap: 38px;
}
.epb_product_body .article .article_txt {
  font-size: 22px;
  margin-top: 1rem;
}

/* page_about
---------------------------------------------------------------- */
.page_about_message_sec .msg_ttl {
  margin-bottom: 2em;
  font-size: 40px;
  font-weight: 600;
  color: #1E5782;
  line-height: 1.2;
}
.page_about_message_sec .msg_body {
  line-height: 2.1;
  width: 828px;
}
@media only screen and (max-width: 768px) {
  .page_about_message_sec .msg_body {
    width: 100%;
  }
}
.page_about_message_sec .msg_sub_ttl {
  font-size: 34px;
  font-weight: 600;
  color: #1E5782;
  line-height: 1.2;
  margin: 1em 0 0.5em;
}
.page_about_message_sec .msg_foot {
  line-height: 1.5;
  margin-top: 50px;
  text-align: right;
}
.page_about_message_sec .msg_foot .msg_logo {
  width: 196px;
  display: inline-block;
}
.page_about_message_sec .msg_foot .msg_txt1 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  margin-left: 1em;
  display: inline-block;
}
.page_about_message_sec .msg_foot .msg_txt2 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  display: inline-block;
  margin-left: 1em;
}

.page_about_zeb_sec .page_about_zeb_ttl {
  font-size: 40px;
  color: #000;
}
.page_about_zeb_sec .page_about_zeb_ttl .small {
  font-size: 0.75em;
}
.page_about_zeb_sec .page_about_zeb_body {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .page_about_zeb_sec .page_about_zeb_body {
    display: block;
  }
}
.page_about_zeb_sec .page_about_zeb_body .col1 {
  width: 606px;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .page_about_zeb_sec .page_about_zeb_body .col1 {
    width: 100%;
  }
}
.page_about_zeb_sec .page_about_zeb_body .col2 {
  width: 430px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page_about_zeb_sec .page_about_zeb_body .col2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.page_about_zeb_sec .page_about_zeb_body .col2 .img {
  width: 255px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .page_about_zeb_sec .page_about_zeb_body .col2 .img {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .page_about_zeb_sec .page_about_zeb_body .col2 .img img {
    width: 100%;
  }
}
.page_about_zeb_sec .page_about_zeb_body .col2 .txt {
  display: inline-block;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .page_about_zeb_sec .page_about_zeb_body .col2 .txt {
    font-size: 14px;
    width: 50%;
  }
}

.page_about_green_sec .page_about_green_ttl {
  font-size: 40px;
  color: #000;
}
.page_about_green_sec .page_about_green_ttl .small {
  font-size: 0.75em;
}
.page_about_green_sec .page_about_green_body {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .page_about_green_sec .page_about_green_body {
    display: block;
  }
}
.page_about_green_sec .page_about_green_body .col1 {
  width: 606px;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .page_about_green_sec .page_about_green_body .col1 {
    width: 100%;
  }
}
.page_about_green_sec .page_about_green_body .col2 {
  width: 370px;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about_company_tbl {
  max-width: 735px;
  margin: auto;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .about_company_tbl {
    font-size: 14px;
  }
}
.about_company_tbl th {
  font-weight: 500;
  border-bottom: 1px solid #fff;
  padding: 1em;
  vertical-align: top;
  text-wrap: nowrap;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .about_company_tbl th {
    padding: 0.5em 0.5em 0.5em 0;
  }
}
.about_company_tbl td {
  border-bottom: 1px solid #fff;
  padding: 1em;
  vertical-align: top;
}
@media only screen and (max-width: 768px) {
  .about_company_tbl td {
    padding: 0.5em 0 0.5em 0.5em;
  }
}
.about_company_tbl tr:last-child th, .about_company_tbl tr:last-child td {
  border-bottom: none;
}

.about_company_gmap {
  width: 710px;
  height: 394px;
  margin: 50px auto;
}
@media only screen and (max-width: 768px) {
  .about_company_gmap {
    width: 100%;
    height: 60vw;
  }
}
.about_company_gmap iframe {
  width: 100%;
  height: 100%;
}

/* page_privacypolicy
---------------------------------------------------------------- */
.privacypolicy_sec {
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .privacypolicy_sec {
    padding: 10vw 0;
  }
}
.privacypolicy_sec .privacypolicy_head {
  margin-bottom: 50px;
}
.privacypolicy_sec .privacypolicy_head .lead {
  font-size: 20px;
  line-height: 2;
}
@media only screen and (min-width: 769px) {
  .privacypolicy_sec .privacypolicy_head .lead {
    width: 760px;
    margin: auto;
    font-size: 18px;
  }
}
.privacypolicy_sec .privacypolicy_body .block {
  margin: 3em auto;
}
.privacypolicy_sec .privacypolicy_body .block_ttl {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.privacypolicy_sec .privacypolicy_body .block_txt {
  line-height: 2;
}
.privacypolicy_sec .privacypolicy_body .block_txt p {
  margin: 0.5em 0 1em;
}

.page-404_section .sec_head {
  padding: 3em 0;
  text-align: center;
}
.page-404_section .sec_head .ttl {
  margin-bottom: 1em;
}
.page-404_section .btn_wrap {
  padding: 3em 0;
  text-align: center;
}

/* 関連トピックス
---------------------------------------------------------------- */
.blog_connected_section,
.page_connected_section {
  border: 1px solid transparent;
}

.connected_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  text-indent: 0;
}

.connected_list_item {
  display: block;
  padding: 0.8em 0;
  text-indent: 0;
  line-height: 1.4;
  border-bottom: 1px solid #ccc;
}

.connected_list a {
  text-decoration: none;
  color: #333;
}

.groupnews .groupnews__ttl {
  text-align: center;
  font-size: 30px;
  line-height: 1;
  padding: 0.4em 0;
  margin-bottom: 0.4em;
}
@media only screen and (max-width: 768px) {
  .groupnews .groupnews__ttl {
    font-size: 20px;
  }
}
.groupnews ul, .groupnews li {
  list-style: none;
  padding: 0;
  text-indent: 0;
}
.groupnews .groupnews__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 30px;
  padding: 20px 0;
}
@media screen and (max-width: 960px) {
  .groupnews .groupnews__wrap {
    gap: 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .groupnews .groupnews__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0px 0px;
  }
}
.groupnews .groupnews__wrap .groupnews__ul {
  width: 100%;
  max-width: calc(100% - 15px);
}
@media screen and (max-width: 960px) {
  .groupnews .groupnews__wrap .groupnews__ul {
    max-width: calc(100% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .groupnews .groupnews__wrap .groupnews__ul {
    max-width: 100%;
  }
  .groupnews .groupnews__wrap .groupnews__ul:last-child .groupnews__li:first-child {
    border-top: none;
  }
}
.groupnews .groupnews__wrap .groupnews__li {
  position: relative;
  padding: 15px 35px 15px 10px;
  border-bottom: #f3f3f3 solid 1px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .groupnews .groupnews__wrap .groupnews__li {
    padding: 10px 35px 10px 0px;
  }
}
@media screen and (max-width: 640px) {
  .groupnews .groupnews__wrap .groupnews__li {
    padding: 8px 25px 8px 0px;
  }
}
@media screen and (min-width: 640px) {
  .groupnews .groupnews__wrap .groupnews__li:hover::before {
    left: 0%;
  }
}
.groupnews .groupnews__wrap .groupnews__li:first-child {
  border-top: #f3f3f3 solid 1px;
}
.groupnews .groupnews__wrap .groupnews__li::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  background: rgba(50, 186, 201, 0.05);
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.groupnews .groupnews__wrap .groupnews__li .post__link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.groupnews .groupnews__wrap .groupnews__li .post__inner {
  position: relative;
  z-index: 2;
}
.groupnews .groupnews__wrap .groupnews__li .news-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.groupnews .groupnews__wrap .groupnews__li .news-date time.date {
  color: #000000;
  font-size: 12px;
  margin-right: 0.5em;
}
.groupnews .groupnews__wrap .groupnews__li .news-date .news-cat {
  padding: 3px;
  display: inline-block;
  color: #fff;
  font-size: 10px;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .groupnews .groupnews__wrap .groupnews__li .news-date .news-cat {
    padding: 2px;
  }
}
.groupnews .groupnews__wrap .groupnews__li .news-date .news-cat.cat__group {
  background: #2FBACA;
}
.groupnews .groupnews__wrap .groupnews__li .news-date .news-cat.cat__g-sanyu {
  background: #2B4198;
}
.groupnews .groupnews__wrap .groupnews__li .news-date .news-cat.cat__hayakita {
  background: #2A2D71;
}
.groupnews .groupnews__wrap .groupnews__li .news-date .news-cat.cat__soken {
  background: #215789;
}
.groupnews .groupnews__wrap .groupnews__li .news-date .news-cat.cat__entech {
  background: #039264;
}
.groupnews .groupnews__wrap .groupnews__li .news__post__title {
  font-size: 1.4rem;
  font-size: 14px;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .groupnews .groupnews__wrap .groupnews__li .news__post__title {
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  .groupnews .groupnews__wrap .groupnews__li .news__post__title {
    font-size: 12px;
  }
}
.groupnews .groupnews__wrap .groupnews__li .post__gaibulink {
  width: 10px;
  height: 10px;
  position: absolute;
  top: calc(50% - 5px);
  right: 5px;
  z-index: 2;
}

.group-bnr_wrap {
  padding: 20px 0;
}

.group-bnr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .group-bnr {
    grid-template-columns: 1fr 1fr;
    gap: 15px 15px;
  }
}
@media screen and (max-width: 560px) {
  .group-bnr {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}
.group-bnr .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  background: #fff;
  position: relative;
  height: 100%;
}
.group-bnr .grplogo {
  max-width: 160px;
}
.group-bnr .gaibulink {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 2;
  width: 10px;
  height: 10px;
}

/* case
=================== */
@media only screen and (min-width: 769px) {
  .case_detail_body_wrap {
    display: grid;
    grid-template-columns: calc((100% - 1024px) / 2 + 800px) auto;
  }
}

@media only screen and (min-width: 769px) {
  .case_detail_main {
    padding: 30px 0;
  }
}
@media only screen and (min-width: 769px) {
  .case_detail_main > .inner {
    width: 820px;
    margin: auto 0 auto auto;
  }
}

.case_detail_tags_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.4;
  gap: 0.5em 2em;
  font-size: 14px;
}
.case_detail_tags_wrap .case_detail_tags {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1;
  gap: 0.5em;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.case_detail_tags_wrap .case_detail_tags_ttl span {
  display: inline-block;
  background: #1d4a75;
  color: #fff;
  padding: 0.4em 0.6em;
  border-radius: 4px;
  text-align: center;
  min-width: 7.5em;
}
.case_detail_tags_wrap .case_detail_tags_item {
  display: inline-block;
}
.case_detail_tags_wrap .case_detail_tags_item .tags_item {
  padding: 0.4em 0.2em;
  display: inline-block;
}
.case_detail_tags_wrap .case_detail_tags_item a {
  text-decoration: none;
  color: #000;
}

.case_detail_ttl {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
  margin: 1em auto;
}
@media only screen and (max-width: 768px) {
  .case_detail_ttl {
    font-size: 24px;
  }
}

.case_mv {
  margin: 30px auto;
}
.case_mv img {
  vertical-align: bottom;
}

.case_overview_list {
  display: grid;
  grid-template-columns: 10em auto;
  gap: 1em;
}
@media only screen and (max-width: 768px) {
  .case_overview_list {
    grid-template-columns: 7em auto;
    gap: 0.75em;
  }
}
.case_overview_list dt::before {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.6875em;
  aspect-ratio: 11/12;
  background-color: #7ca7c3;
  margin: auto 0.5em auto 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media only screen and (max-width: 768px) {
  .case_overview_list dt::before {
    width: 0.5em;
    margin-right: 0.25em;
  }
}
.case_overview_list dd span {
  display: inline-block;
  margin-right: 1em;
}

.case_before_after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  list-style: none;
  margin: 30px auto;
}
@media only screen and (max-width: 768px) {
  .case_before_after {
    grid-template-columns: 1fr;
  }
}
.case_before_after .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.case_before_after .item_ttl {
  text-align: center;
  font-weight: bold;
  line-height: 1;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1em;
}
.case_before_after .item_ttl span {
  display: inline-block;
  text-align: center;
  background-color: #7d7d7d;
  color: #fff;
  border-radius: 50px;
  padding: 0.5em 2em;
}
.case_before_after .item_body {
  text-align: left;
}
.case_before_after .case_before_item {
  height: 100%;
  padding: 1.5em 2em;
  background-color: #e9eaea;
  border-radius: 23px;
}
.case_before_after .case_before_item .item_ttl span {
  background-color: #7d7d7d;
}
.case_before_after .case_after_item {
  height: 100%;
  padding: 1.5em 2em;
  background-color: #fdecea;
  position: relative;
  border-radius: 23px;
  overflow: visible;
}
.case_before_after .case_after_item::before {
  content: "";
  display: block;
  width: 13px;
  height: 12px;
  background-color: #df7e5f;
  position: absolute;
  left: -19px;
  top: 0;
  bottom: 0;
  margin: auto;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media only screen and (max-width: 768px) {
  .case_before_after .case_after_item::before {
    top: -19px;
    left: 0;
    right: 0;
    bottom: auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    height: 15px;
  }
}
.case_before_after .case_after_item .item_ttl span {
  background-color: #df7e5f;
}
.case_before_after .case_after_last {
  font-weight: bold;
  font-size: 26px;
  line-height: 1;
  text-align: center;
  margin: 0.5em auto;
}
.case_before_after .case_after_last span {
  display: inline-block;
}
.case_before_after .case_after_last .txt2 {
  font-size: 2em;
  font-weight: bold;
  color: #df7e5f;
}
.case_before_after .case_after_last .txt3 {
  color: #df7e5f;
}

.case_detail_block {
  margin: 2em auto;
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .case_detail_block {
    font-size: 14px;
  }
}
.case_detail_block h2 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .case_detail_block h2 {
    font-size: 22px;
  }
}
.case_detail_block h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .case_detail_block h3 {
    font-size: 20px;
  }
}
.case_detail_block p {
  margin: 1em auto;
}

@media only screen and (min-width: 769px) {
  .case_detail_side {
    padding: 30px 0;
  }
}
@media only screen and (min-width: 769px) {
  .case_detail_side > .inner {
    width: 270px;
    margin: 0 auto auto 70px;
  }
}
@media only screen and (max-width: 768px) {
  .case_detail_side > .inner {
    margin-bottom: 5vw;
    width: 80vw;
  }
}
.case_detail_side .case_side_post_nav_ttl {
  font-weight: bold;
}

.case_side_post_nav_list {
  list-style: none;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5em;
}
.case_side_post_nav_list .list_item {
  list-style: none;
}
.case_side_post_nav_list a {
  text-decoration: none;
  color: #000;
  display: block;
}
.case_side_post_nav_list .list_item_img {
  width: 100%;
  height: auto;
  aspect-ratio: 230/122;
  background-color: #eee;
}
.case_side_post_nav_list .list_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.case_side_post_nav_list .list_item_txt {
  margin-top: 0.25em;
  font-weight: bold;
}
.case_side_post_nav_list .case_detail_tags_wrap {
  font-size: 12px;
  margin-top: 0.5em;
}
.case_side_post_nav_list .case_detail_tags_wrap .case_detail_tags {
  gap: 0 0.25em;
}
.case_side_post_nav_list .case_detail_tags_wrap .case_detail_tags_ttl span {
  display: inline-block;
  font-size: 11px;
  min-width: 6em;
  text-align: center;
}

.side_bnrs {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 10px;
}
.side_bnrs .link {
  display: block;
}
.side_bnrs .link img {
  width: 100%;
}

/* case_archive
---------------------------------------------------------------- */
.case_archive_filters {
  background: #efefef;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 0.5em 20px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .case_archive_filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case_archive_filters .ttl {
  display: block;
  padding: 0 2em;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .case_archive_filters .ttl {
    padding: 0.5em 0;
  }
}
.case_archive_filters .item {
  display: block;
}
@media only screen and (max-width: 768px) {
  .case_archive_filters .item {
    width: 100%;
  }
}
.case_archive_filters select {
  border: 1px solid #bfc0c0;
  border-radius: 10px;
  padding: 0.5em;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .case_archive_filters select {
    width: 100%;
    font-size: 14px;
  }
}

.case_archive_list {
  margin-top: 40px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .case_archive_list {
    grid-template-columns: 1fr;
  }
}
.case_archive_list .list_item {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.case_archive_list .list_item_img {
  display: block;
  background: #ddd;
  width: 100%;
  height: auto;
  aspect-ratio: 320/175;
}
.case_archive_list .list_item_img img {
  display: block;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.case_archive_list .list_item_body {
  padding: 0 15px 20px;
}
.case_archive_list .list_item_txt {
  display: block;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  margin: 0.8em 0;
}

/* page_download_archive
---------------------------------------------------------------- */
.download_archive_list {
  margin-top: 40px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 16px;
}
@media only screen and (max-width: 768px) {
  .download_archive_list {
    grid-template-columns: 1fr;
  }
}
.download_archive_list a {
  display: block;
  text-decoration: none;
  color: #000;
}
.download_archive_list .list_item {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.download_archive_list .list_item_img {
  display: block;
  background: #ddd;
  border: 20px solid #fff;
  width: 100%;
  height: auto;
  aspect-ratio: 265/162;
}
.download_archive_list .list_item_img img {
  display: block;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.download_archive_list .list_item_body {
  padding: 0 20px 20px;
}
.download_archive_list .list_item_txt {
  display: block;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  margin: 0 0 0.8em;
}
.download_archive_list .list_item_outline_ttl {
  font-weight: bold;
  margin-bottom: 0.5em;
  display: grid;
  grid-template-columns: 0.8em calc(100% - 0.8em);
  gap: 0.2em;
}
.download_archive_list .list_item_outline_ttl::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-top: 0.4em;
  aspect-ratio: 1/1;
  border-radius: 50px;
  background: #93a7d1;
}
.download_archive_list .list_item_outline_detail_block {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4em;
}
.download_archive_list .list_item_outline_detail_block li {
  color: #656565;
  display: grid;
  grid-template-columns: 0.8em calc(100% - 0.8em);
  gap: 0.2em;
}
.download_archive_list .list_item_outline_detail_block li::before {
  content: "・";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  aspect-ratio: 1/1;
}
.download_archive_list .list_item_outline_detail_block li span {
  display: inline-block;
}

/* page_download
---------------------------------------------------------------- */
.download_detail_main_header {
  border-bottom: 1px solid #bfc0c0;
  padding-bottom: 50px;
}

.dl_detail_main_ttl {
  font-size: 38px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .dl_detail_main_ttl {
    font-size: 8vw;
  }
}

.dl_detail_main_body {
  margin: 2em auto;
}
@media only screen and (max-width: 768px) {
  .dl_detail_main_body {
    font-size: 14px;
  }
}

.dl_detail_outline_ttl {
  font-weight: bold;
  margin-bottom: 0.2em;
}

.download_thumb_form {
  padding: 50px 0;
}
@media only screen and (min-width: 769px) {
  .download_thumb_form {
    padding-bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12%;
  }
  .download_thumb_form > * {
    width: 44%;
  }
}
.download_thumb_form .sliderArea .sliderMain {
  border: 1px solid #bfc0c0;
  aspect-ratio: 445/250;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.download_thumb_form .sliderArea .sliderMain__item {
  width: 100%;
  aspect-ratio: 445/250;
}
.download_thumb_form .sliderArea .sliderMain__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.download_thumb_form .sliderArea .sliderThumb .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}
.download_thumb_form .sliderArea .sliderThumb__item {
  aspect-ratio: 445/250;
  margin-right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #bfc0c0;
}
.download_thumb_form .sliderArea .sliderThumb__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.download_thumb_form .sliderArea .js-slider-thumb {
  display: none;
}

@media only screen and (max-width: 768px) {
  .download_form_area {
    padding-top: 50px;
  }
}
.download_form_area .dl_form_items {
  display: block;
}
.download_form_area .dl_form_items dt {
  display: block;
  line-height: 1;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 0.4em;
}
.download_form_area .dl_form_items dd {
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}
.download_form_area .dl_form_items .ttl {
  display: inline-block;
  font-weight: bold;
}
.download_form_area .dl_form_items .required {
  display: inline-block;
  font-size: 0.6em;
  padding: 0.2em 0.4em;
  background: #d04823;
  color: #fff;
  margin-left: 0.2em;
  font-weight: 500;
}
.download_form_area .dl_form_items input[type=text],
.download_form_area .dl_form_items input[type=email],
.download_form_area .dl_form_items input[type=tel] {
  border: 1px solid #bfc0c0;
  border-radius: 10px;
  line-height: 1;
  padding: 0.2em;
  width: 100%;
  font-size: 16px;
}
.download_form_area .dl_privacy_area {
  text-align: center;
  margin: 20px auto;
}
.download_form_area .dl_privacy_area .wpcf7-list-item {
  margin: auto;
}
.download_form_area .dl_submit_area {
  text-align: center;
  position: relative;
  padding: 0;
}
.download_form_area .dl_submit_area .wpcf7-spinner {
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  margin: auto;
}
.download_form_area .wpcf7-not-valid-tip {
  font-size: 12px;
  display: block;
}
.download_form_area .wpcf7-response-output {
  display: none;
}

.dl_submit {
  font-size: 20px;
  font-weight: 600;
  margin: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  background: url(../img/common/icon_dl_w.svg), -webkit-gradient(linear, left top, right top, from(rgb(236, 107, 116)), to(rgb(208, 72, 35)));
  background: url(../img/common/icon_dl_w.svg), linear-gradient(90deg, rgb(236, 107, 116) 0%, rgb(208, 72, 35) 100%);
  background-color: #d04823;
  background-size: 1em auto, auto;
  background-position: right 1em center, center center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 0.5em 2.5em 0.5em 2em;
  line-height: 1;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}
.dl_submit:disabled {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: url(../img/common/icon_dl_w.svg), #aaa;
  background-size: 1em auto, auto;
  background-position: right 1em center, center center;
  background-repeat: no-repeat;
}

/* page_underwater.--2026
---------------------------------------------------------------- */
.page_underwater.--2026 .puw-sec {
  display: block;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.page_underwater.--2026 .p_sec__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_underwater.--2026 .p_sec__inner {
  position: relative;
  margin: auto;
  width: 1024px;
  max-width: 100%;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec__inner {
    padding: 0 4.2vw;
  }
}
.page_underwater.--2026 .p_sec__ttl {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec__ttl {
    font-size: clamp(18px, 5.6vw, 22px);
    gap: 2vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100vw;
    margin-left: -4.2vw;
  }
}
.page_underwater.--2026 .p_sec__ttl span {
  display: inline-block;
}
.page_underwater.--2026 .p_sec__ttl::before {
  content: "";
  display: inline-block;
  width: 1.8em;
  height: auto;
  aspect-ratio: 54/65;
  background: url(../img/underwater2026/ttl_icon_left.svg) center center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec__ttl::before {
    width: 7.46vw;
  }
}
.page_underwater.--2026 .p_sec__ttl::after {
  content: "";
  display: inline-block;
  width: 1.866em;
  height: auto;
  aspect-ratio: 56/67;
  background: url(../img/underwater2026/ttl_icon_right.svg) center center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec__ttl::after {
    width: 8vw;
  }
}
.page_underwater.--2026 .p_sec__ttl.--white::before, .page_underwater.--2026 .p_sec__ttl.--white::after {
  -webkit-filter: brightness(0%) invert(100%);
          filter: brightness(0%) invert(100%);
}
.page_underwater.--2026 .p_sec__ttl.is-anime {
  opacity: 1;
}
.page_underwater.--2026 .p_sec__ttl.js-anime {
  opacity: 1;
}
.page_underwater.--2026 .p_sec__ttl.js-anime::before, .page_underwater.--2026 .p_sec__ttl.js-anime::after {
  opacity: 0;
}
.page_underwater.--2026 .p_sec__ttl.js-active::before, .page_underwater.--2026 .p_sec__ttl.js-active::after {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: puw-fadeUp;
          animation-name: puw-fadeUp;
}
@-webkit-keyframes puw-fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes puw-fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.page_underwater.--2026 .p_sec__lead {
  text-align: center;
  font-size: 16px;
  margin: 0.8em auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec__lead {
    font-size: 14px;
  }
}
.page_underwater.--2026 .p_cta__btn {
  background: -webkit-gradient(linear, left top, right top, from(#e54388), color-stop(50%, #ebad4b), to(#e54388));
  background: linear-gradient(to right, #e54388 0%, #ebad4b 50%, #e54388 100%);
  background-position: 0 0;
  background-size: 200% 100%;
  border: 2px solid #fff;
  border-radius: 100px;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  width: 333px;
  height: 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_cta__btn {
    font-size: 14px;
    height: 4em;
    width: 66vw;
    max-width: 333px;
  }
}
.page_underwater.--2026 .p_cta__btn:hover {
  opacity: 1;
  background-position: 100% 0;
}
.page_underwater.--2026 .p_cta__btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 14px;
  background: url(../img/underwater2026/icon_arrow_r_w.svg) no-repeat center center/contain;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.page_underwater.--2026 .p_cta__btn.--middle {
  height: 50px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_cta__btn.--middle {
    height: 3.5em;
    width: 90vw;
    max-width: 333px;
  }
}
.page_underwater.--2026 .p_cta__btn.--blue {
  background: -webkit-gradient(linear, left top, right top, from(#5268C4), color-stop(50%, #62BAB7), to(#5268C4));
  background: linear-gradient(to right, #5268C4 0%, #62BAB7 50%, #5268C4 100%);
  background-position: 0 0;
  background-size: 200% 100%;
}
.page_underwater.--2026 .p_cta__btn.--blue:hover {
  opacity: 1;
  background-position: 100% 0;
}
.page_underwater.--2026 .p_cta__btn.--dl::after {
  background-image: url(../img/underwater2026/icon_dl.svg);
  width: 24px;
  height: 24px;
}

/* .p_sec_mv
=================== */
.page_underwater.--2026 .p_sec_mv {
  background: #60B2D7;
  color: #fff;
  overflow: hidden;
}
.page_underwater.--2026 .p_sec_mv .p_sec__inner {
  padding-top: 74px;
  padding-bottom: 110px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_mv .p_sec__inner {
    padding-top: 55vw;
    padding-bottom: 38vw;
  }
}
.page_underwater.--2026 .p_sec_mv_imgs {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 1024px;
  max-width: 100%;
  height: 100%;
  margin: auto;
}
.page_underwater.--2026 .p_sec_mv_imgs img {
  position: absolute;
  top: auto;
  left: auto;
  bottom: auto;
  right: auto;
  margin: auto;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
.page_underwater.--2026 .p_sec_mv_imgs .mv_bg-01 {
  width: 337px;
  right: -50px;
  bottom: -80px;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_mv_imgs .mv_bg-01 {
    width: 44vw;
    right: auto;
    left: -15vw;
    bottom: 5vw;
  }
}
.page_underwater.--2026 .p_sec_mv_imgs .mv_bg-02 {
  width: 273px;
  left: 0;
  bottom: 0;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_mv_imgs .mv_bg-02 {
    width: 36vw;
    left: auto;
    right: -10vw;
    bottom: auto;
    top: 100px;
  }
}
.page_underwater.--2026 .p_sec_mv_imgs .mv_bg-03 {
  width: 420px;
  left: -180px;
  top: -34px;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_mv_imgs .mv_bg-03 {
    width: 59.2vw;
    left: -21vw;
    top: 40px;
  }
}
.page_underwater.--2026 .p_sec_mv_imgs .mv_bg-04 {
  width: 420px;
  top: -75px;
  right: -120px;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_mv_imgs .mv_bg-04 {
    width: 65.3vw;
    top: auto;
    right: -20vw;
    bottom: -8vw;
  }
}
.page_underwater.--2026 .p_sec_mv__ttl {
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.page_underwater.--2026 .p_sec_mv__ttl span {
  display: block;
}
.page_underwater.--2026 .p_sec_mv__ttl .txt1 {
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_mv__ttl .txt1 {
    font-size: 12px;
  }
}
.page_underwater.--2026 .p_sec_mv__ttl .txt2 {
  font-size: 30px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_mv__ttl .txt2 {
    font-size: min(6.93vw, 30px);
  }
}
.page_underwater.--2026 .p_sec_mv__lead {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  line-height: 1.44;
  padding-left: 0.5em;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_mv__lead {
    font-size: min(9vw, 36px);
    margin-top: 0.2em;
  }
}
.page_underwater.--2026 .p_sec_mv__txt {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 54px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_mv__txt {
    font-size: 16px;
  }
}
/* .p_sec_issues
=================== */
.page_underwater.--2026 .p_sec_issues {
  background: url(../img/underwater2026/issues_bg-pc.png), -webkit-gradient(linear, left top, left bottom, from(#6cb0bf), to(#57767c));
  background: url(../img/underwater2026/issues_bg-pc.png), linear-gradient(#6cb0bf 0%, #57767c 100%);
  background-size: 1366px auto, auto;
  background-position: center top, center;
  background-repeat: repeat-y, no-repeat;
  color: #fff;
  padding: 80px 0 90px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_issues {
    background: url(../img/underwater2026/issues_bg-sp.png), -webkit-gradient(linear, left top, left bottom, from(#6cb0bf), to(#57767c));
    background: url(../img/underwater2026/issues_bg-sp.png), linear-gradient(#6cb0bf 0%, #57767c 100%);
    background-size: 100% auto, auto;
  }
}
.page_underwater.--2026 .p_sec_issues__list {
  list-style: none;
  text-indent: 0;
  padding: 0;
  width: 1024px;
  max-width: 100%;
  margin: 50px auto auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.7%;
  color: #292929;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_issues__list {
    margin-top: 8vw;
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.page_underwater.--2026 .p_sec_issues__list li {
  padding: 20px 0;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_issues__list li {
    padding: 6vw 0;
  }
}
.page_underwater.--2026 .p_sec_issues__list .icon_wrap {
  width: 100%;
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_underwater.--2026 .p_sec_issues__list .icon-01 {
  width: 33px;
}
.page_underwater.--2026 .p_sec_issues__list .icon-02 {
  width: 44px;
}
.page_underwater.--2026 .p_sec_issues__list .icon-03 {
  width: 23px;
}
.page_underwater.--2026 .p_sec_issues__list .icon-04 {
  width: 30px;
}
.page_underwater.--2026 .p_sec_issues__list .ttl {
  font-weight: bold;
  text-align: center;
  color: #4F9DAD;
  font-size: 20px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_issues__list .ttl {
    font-size: 18px;
  }
}
.page_underwater.--2026 .p_sec_issues__list .txt {
  font-size: 16px;
  padding: 0 20px;
  margin-top: 0.8em;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_issues__list .txt {
    font-size: 14px;
    padding: 0 6.6vw;
  }
}

/* .p_sec_about
=================== */
.page_underwater.--2026 .p_sec_about {
  background: #D9F2F8 url(../img/underwater2026/about_bg-pc.jpg) center center no-repeat;
  background-size: cover;
  color: #292929;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_about {
    min-height: 0;
    background-size: 200vw auto;
    background-position: bottom 10vw right -31vw;
  }
}
.page_underwater.--2026 .p_sec_about .p_sec__inner {
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 815px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_about .p_sec__inner {
    padding-top: 14.4vw;
    padding-bottom: 83.5vw;
  }
}
.page_underwater.--2026 .p_sec_about .about_img-01 {
  width: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  height: 800px;
  position: absolute;
  right: -70px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_about .about_img-01 {
    top: auto;
    right: auto;
    left: 0;
    bottom: 5vw;
    width: 85.8vw;
    height: auto;
  }
}
.page_underwater.--2026 .p_sec_about__body {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 580px;
  max-width: 100%;
  margin-top: 50px;
  padding: 50px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_about__body {
    margin: 6vw auto auto;
    padding: 6.6vw;
  }
}
.page_underwater.--2026 .p_sec_about__body .ttl {
  font-weight: bold;
  color: #526796;
  font-size: 22px;
}
.page_underwater.--2026 .p_sec_about__body .ttl span {
  display: block;
}
.page_underwater.--2026 .p_sec_about__body .ttl .sub {
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_about__body .ttl .sub {
    font-size: 14px;
  }
}
.page_underwater.--2026 .p_sec_about__body .ttl .main {
  font-size: 22px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_about__body .ttl .main {
    font-size: 20px;
  }
}
.page_underwater.--2026 .p_sec_about__body p {
  margin-top: 1em;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_about__body p {
    font-size: 14px;
  }
}
.page_underwater.--2026 .p_sec_about__body p.em {
  font-weight: bold;
  font-size: 1.25em;
  color: #E86286;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_about__body p.em {
    font-size: 1.14em;
  }
}

/* .p_sec_reasons
=================== */
.page_underwater.--2026 .p_sec_reasons {
  background: #60B2D7 url(../img/underwater2026/reasons_bg-pc.jpg) top center no-repeat;
  background-size: cover;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_reasons {
    background-image: url(../img/underwater2026/reasons_bg-sp.jpg);
  }
}
.page_underwater.--2026 .p_sec_reasons .p_sec__inner {
  padding-top: 90px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_reasons .p_sec__inner {
    padding-top: 15vw;
    padding-bottom: 15vw;
  }
}
.page_underwater.--2026 .p_sec_reasons__list {
  width: 998px;
  max-width: 100%;
  margin: 48px auto auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.6%;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_reasons__list {
    display: block;
  }
}
.page_underwater.--2026 .p_sec_reasons__list li {
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #fff;
  color: #292929;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-shadow: 0 8px 24px rgb(85, 166, 226), 0 -8px 34px rgb(131, 195, 214);
          box-shadow: 0 8px 24px rgb(85, 166, 226), 0 -8px 34px rgb(131, 195, 214);
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
@media only screen and (min-width: 769px) {
  .page_underwater.--2026 .p_sec_reasons__list li:nth-child(1) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .page_underwater.--2026 .p_sec_reasons__list li:nth-child(2) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .page_underwater.--2026 .p_sec_reasons__list li:nth-child(3) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_reasons__list li {
    width: 64.2vw;
    max-width: 370px;
  }
  .page_underwater.--2026 .p_sec_reasons__list li:nth-child(1) {
    margin-left: -8vw;
  }
  .page_underwater.--2026 .p_sec_reasons__list li:nth-child(2) {
    margin-left: auto;
    margin-right: -8vw;
    margin-top: -10vw;
  }
  .page_underwater.--2026 .p_sec_reasons__list li:nth-child(3) {
    margin-left: -8vw;
    margin-top: -10vw;
  }
}
.page_underwater.--2026 .p_sec_reasons__list .ttl {
  font-weight: bold;
  color: #4F9DAD;
  font-size: 20px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_reasons__list .ttl {
    font-size: 18px;
  }
}
.page_underwater.--2026 .p_sec_reasons__list .txt {
  font-size: 16px;
  text-align: left;
  padding: 0 2.5em;
  margin-top: 1em;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_reasons__list .txt {
    font-size: 14px;
    margin-bottom: 1em;
  }
}
.page_underwater.--2026 .p_sec_reasons__btn_wrap {
  margin-top: 43px;
}

/* .p_sec_use-cases
=================== */
.page_underwater.--2026 .p_sec_use-cases {
  background: #F7F7F7;
  color: #292929;
}
.page_underwater.--2026 .p_sec_use-cases .p_sec__inner {
  padding-top: 100px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_use-cases .p_sec__inner {
    padding-top: 16vw;
    padding-bottom: 18vw;
  }
}
.page_underwater.--2026 .p_sec_use-cases__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  gap: 32px;
  margin-top: 66px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_use-cases__list {
    grid-template-columns: 1fr;
    gap: 2vw;
    margin-top: 5.86vw;
  }
}
.page_underwater.--2026 .p_sec_use-cases__list li {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_use-cases__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.page_underwater.--2026 .p_sec_use-cases__list .img_wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 640/312;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_use-cases__list .img_wrap {
    width: 32vw;
    height: 100%;
    aspect-ratio: none;
  }
}
.page_underwater.--2026 .p_sec_use-cases__list .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_underwater.--2026 .p_sec_use-cases__list .ttl_wrap {
  padding: 14px 22px 22px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_use-cases__list .ttl_wrap {
    width: calc(100% - 32vw);
    padding: 14px 10px 14px 14px;
  }
}
.page_underwater.--2026 .p_sec_use-cases__list .sub {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_use-cases__list .sub {
    font-size: 14px;
  }
}
.page_underwater.--2026 .p_sec_use-cases__list .ttl {
  font-size: 20px;
  font-weight: bold;
  color: #4F9DAD;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_use-cases__list .ttl {
    font-size: min(4vw, 16px);
  }
}

/* .p_sec_achievements
=================== */
.page_underwater.--2026 .p_sec_achievements {
  background: #E2F2F5 url(../img/underwater2026/achieve_bg-pc.png) top center;
  background-repeat: repeat-y;
  background-size: 1366px auto;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_achievements {
    background-image: url(../img/underwater2026/achieve_bg-sp.png);
    background-size: cover;
  }
}
.page_underwater.--2026 .p_sec_achievements .p_sec__inner {
  padding-top: 90px;
  padding-bottom: 150px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_achievements .p_sec__inner {
    padding-top: 16vw;
    padding-bottom: 16vw;
  }
}
.page_underwater.--2026 .p_sec_achievements__list {
  margin-top: 54px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_achievements__list {
    margin-top: 9vw;
    grid-template-columns: repeat(2, 1fr);
    gap: 6vw 3vw;
  }
}
.page_underwater.--2026 .p_sec_achievements__list .img_wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 312/210;
}
.page_underwater.--2026 .p_sec_achievements__list .img_wrap .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.page_underwater.--2026 .p_sec_achievements__list .txt1 {
  font-size: 12px;
  margin-top: 1em;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_achievements__list .txt1 {
    margin-top: 0.5em;
  }
}
.page_underwater.--2026 .p_sec_achievements__list .txt2 {
  font-weight: 600;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_achievements__list .txt2 {
    font-size: 14px;
  }
}

/* .p_sec_clo2
=================== */
.page_underwater.--2026 .p_sec_clo2 {
  background: url(../img/underwater2026/clo2_bg-pc.jpg) center center no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_clo2 {
    background-image: url(../img/underwater2026/clo2_bg-sp.jpg);
  }
}
.page_underwater.--2026 .p_sec_clo2 .p_sec__inner {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_clo2 .p_sec__inner {
    padding-top: 14vw;
    padding-bottom: 20vw;
  }
}
.page_underwater.--2026 .p_sec_clo2__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_clo2__body {
    display: block;
    margin-top: 8vw;
  }
}
.page_underwater.--2026 .p_sec_clo2__body .body1 {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_clo2__body .body1 {
    width: 100%;
    font-size: 14px;
  }
}
.page_underwater.--2026 .p_sec_clo2__body .body1 p {
  margin: 1em auto;
}
.page_underwater.--2026 .p_sec_clo2__body .body2 {
  width: 406px;
  margin-right: 4.8%;
  border-radius: 16px;
  background: #C3E4E5;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_clo2__body .body2 {
    margin: auto;
    margin-top: 8vw;
    width: 100%;
    padding: 5vw;
  }
}
.page_underwater.--2026 .p_sec_clo2__body .clo2__list {
  background: #fff;
  border-radius: 13px;
  padding: 20px 40px 40px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_clo2__body .clo2__list {
    padding: 8vw 4vw 10vw 8vw;
  }
}
.page_underwater.--2026 .p_sec_clo2__body .clo2__list .ttl {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 28px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_clo2__body .clo2__list .ttl {
    font-size: 18px;
    margin-bottom: 1em;
  }
}
.page_underwater.--2026 .p_sec_clo2__body .clo2__list .ttl::before {
  content: "";
  display: inline-block;
  width: 29px;
  height: 29px;
  background: url(../img/underwater2026/icon_pencil.svg) center center no-repeat;
  background-size: contain;
  margin-bottom: -4px;
}
.page_underwater.--2026 .p_sec_clo2__body .clo2__list .data {
  font-size: 16px;
  line-height: 1.2;
  margin-top: 1em;
  text-indent: -22px;
  padding-left: 22px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_clo2__body .clo2__list .data {
    font-size: 14px;
  }
}
.page_underwater.--2026 .p_sec_clo2__body .clo2__list .data::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../img/underwater2026/icon_check.svg) center center no-repeat;
  background-size: contain;
  margin: auto 2px -3px 0;
}
.page_underwater.--2026 .p_sec_clo2__body .clo2__list .data .small {
  font-size: 12px;
}

/* .p_sec_flow
=================== */
.page_underwater.--2026 .p_sec_flow {
  background: #51A4CE url(../img/underwater2026/flow_bg-pc.jpg) top center no-repeat;
  background-size: cover;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_flow {
    background-image: url(../img/underwater2026/flow_bg-sp.jpg);
  }
}
.page_underwater.--2026 .p_sec_flow .p_sec__inner {
  padding-top: 74px;
  padding-bottom: 85px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_flow .p_sec__inner {
    padding-top: 18.6vw;
    padding-bottom: 18.6vw;
  }
}
.page_underwater.--2026 .p_sec_flow__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin: 48px auto auto;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_flow__list {
    grid-template-columns: 1fr;
    margin-top: 8vw;
    max-width: 400px;
  }
}
.page_underwater.--2026 .p_sec_flow__list .item {
  border: 2px solid #4F9DAD;
  border-radius: 21px;
  background: #fff;
  color: #292929;
  position: relative;
  padding: 20px 0;
  text-align: center;
}
.page_underwater.--2026 .p_sec_flow__list .item.--last {
  border-color: #E86286;
}
.page_underwater.--2026 .p_sec_flow__list .ttl {
  color: #4F9DAD;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
.page_underwater.--2026 .p_sec_flow__list .ttl.--last {
  color: #E86286;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_flow__list .ttl {
    font-size: 18px;
  }
}
.page_underwater.--2026 .p_sec_flow__list .txt {
  margin-top: 0.5em;
  display: inline-block;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_flow__list .txt {
    font-size: 14px;
  }
}
.page_underwater.--2026 .p_sec_flow__list .next {
  width: 12px;
  height: 12px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #fff;
  position: absolute;
  right: -17px;
  overflow: hidden;
  top: 0;
  bottom: 0;
  margin: auto;
  text-indent: 100px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_flow__list .next {
    bottom: -16px;
    top: auto;
    left: 0;
    right: 0;
    width: 15px;
    height: 10px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
.page_underwater.--2026 .p_sec_flow__btn_wrap {
  margin-top: 40px;
}

/* .p_sec_creins-contact
=================== */
.page_underwater.--2026 .p_sec_creins-contact {
  background: #fff;
}
.page_underwater.--2026 .p_sec_creins-contact .p_sec__inner {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .p_sec_creins-contact .p_sec__inner {
    padding-top: 13vw;
    padding-bottom: 13vw;
  }
}
.page_underwater.--2026 .p_sec__form_wrap {
  margin: auto;
  margin-top: 34px;
  width: 100%;
  max-width: 100%;
}
.page_underwater.--2026 .p_sec__form_wrap .required {
  background: #E86286;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  width: auto;
  padding: 0.3em 0.5em;
  border-radius: 6px;
  margin-left: 0.5em;
}
.page_underwater.--2026 .p_sec__form_wrap iframe {
  max-width: 100%;
  margin: auto;
  border: 1px solid #ddd;
}
.page_underwater.--2026 label {
  font-weight: 600;
  font-size: 18px;
  margin-top: 14px;
  display: block;
  margin-bottom: 2px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 label {
    font-size: 16px;
  }
}
.page_underwater.--2026 select,
.page_underwater.--2026 textarea,
.page_underwater.--2026 input[type=tel],
.page_underwater.--2026 input[type=email],
.page_underwater.--2026 input[type=text] {
  border: 1px solid #cbcbcb;
  border-radius: 10px;
  font-size: 16px;
  width: 100%;
  padding: 0.25em;
}
.page_underwater.--2026 textarea {
  min-height: 8em;
}
.page_underwater.--2026 .form__btn_wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .page_underwater.--2026 .form__btn_wrap .p_cta__btn {
    width: 69vw;
    max-width: 333px;
  }
}/*# sourceMappingURL=common.css.map */