@charset "UTF-8";
:root {
  --color_bg: #ecf5f9;
  --color_text: #000;
  --color_primary: #2c4d7a;
  --color_sub01: #bbd1ef;
  --color_sub02: #83abd8;
  --color_primary_rgb: 44, 77, 122;
  --font_base: "fot-tsukuardgothic-std", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_serif: "Noto Serif JP", serif;
  --font_medium: 500;
  --easing: cubic-bezier(.12, 1, .5, 1);
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  color: inherit;
  text-decoration: none;
}

:where(button) {
  all: unset;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:where(a, input, button, textarea, select) {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

textarea {
  resize: block;
}

:where(button, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:focus-visible) {
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(ul, ol, li) {
  list-style: none;
}

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

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

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

:where(em, dfn) {
  font-style: inherit;
}

sup {
  vertical-align: text-top;
  font-size: 0.65em;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  line-height: 1;
}

hr {
  border: none;
  -webkit-border-before: 1px solid;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

mark {
  background: transparent;
  font-style: normal;
}

/*-----------------------------------------------------------
Base
-----------------------------------------------------------*/
body {
  font-family: var(--font_base);
  color: var(--color_text);
  font-size: 1.6rem;
  line-height: 1.625;
}

body.is-hidden {
  display: flow-root;
  overflow: clip;
}

@media (max-width: 800px) {
  body {
    font-size: 1.5rem;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

th,
dt {
  font-weight: bold;
}

.link {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}

.link:is(:hover, :focus) {
  text-decoration: none;
}

.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/lp/fip/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

.no-link {
  pointer-events: none;
}

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 100px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 0;
  }
}
.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.container.wide {
  max-width: 1200px;
}

.container.narrow {
  max-width: 800px;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}

.header .btn-more {
  letter-spacing: 0.1em;
}

.header-layout {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1020px;
  width: 90%;
  margin: 0 auto;
  height: 100px;
}

.h-txt {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  .header {
    position: absolute;
  }
  .header-layout {
    padding: 0;
    height: 75px;
  }
  .h-logo img {
    max-width: 170px;
  }
  .h-txt {
    font-size: 1.2rem;
    margin-top: 0;
  }
  .h-btn,
  .gnavi {
    display: none;
  }
}
/*-----------------------------------------------------------
Gnavi
-----------------------------------------------------------*/
.gnavi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 50px;
}

.gnavi-list > li > a {
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.1em;
  background: -webkit-gradient(linear, left top, left bottom, from(#000)) no-repeat bottom right/0 1px;
  background: linear-gradient(#000) no-repeat bottom right/0 1px;
  padding-bottom: 2px;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

@media (hover: hover) {
  .gnavi-list > li > a:hover {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}
/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
  margin-top: 100px;
}

.hero-catch {
  width: 90%;
  color: #532100;
  font-family: var(--font_serif);
  font-size: clamp(3rem, 4vw, 5.5rem);
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-shadow: 0px 0px 18px rgb(255, 255, 247), 0px 0px 18px rgb(255, 255, 247), 0px 0px 18px rgb(255, 255, 247), 0px 0px 15px rgb(255, 255, 247), 0px 0px 15px rgb(255, 255, 247), 0px 0px 15px rgb(255, 255, 247), 0px 0px 10px rgb(255, 255, 247), 0px 0px 10px rgb(255, 255, 247), 0px 0px 10px rgb(255, 255, 247), 0px 0px 5px rgb(255, 255, 247), 0px 0px 5px rgb(255, 255, 247), 0px 0px 5px rgb(255, 255, 247), 0px 0px 5px rgb(255, 255, 247), 0px 0px 2px rgb(255, 255, 247), 0px 0px 2px rgb(255, 255, 247);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-catch span {
  display: block;
}

.hero-img img {
  width: 100%;
}

@media (max-width: 800px) {
  .hero {
    margin-top: 75px;
  }
  .hero-catch {
    font-size: 6vw;
    line-height: 1.314;
  }
  .hero-catch span + span {
    margin-top: 10px;
  }
}
/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.sec-ttl {
  background-color: var(--color_primary);
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  padding: 12px 5%;
}

.sec-ttl.pd-large {
  padding: 24px 5%;
}

.t-ttl01 {
  color: var(--color_primary);
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.t-ttl02 {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 65px;
}

.t-ttl03 {
  color: var(--color_primary);
  text-align: center;
  margin-bottom: 60px;
}

.t-ttl03 .txt01 {
  font-size: 3.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.t-ttl03 .txt02 {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

.t-ttl04 {
  background-color: var(--color_sub02);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 3px 15px;
  margin-bottom: 30px;
}

.sub-ttl {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.sub-ttl .small {
  font-size: 1.4rem;
  font-weight: normal;
}

@media (max-width: 800px) {
  .sec-ttl {
    font-size: 2rem;
    padding: 10px 5%;
  }
  .sec-ttl.pd-large {
    padding: 20px 5%;
  }
  .t-ttl01 {
    font-size: 1.8rem;
  }
  .t-ttl02 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .t-ttl03 {
    margin-bottom: 30px;
  }
  .t-ttl03 .txt01 {
    font-size: 2.8rem;
  }
  .sub-ttl {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .t-ttl04 {
    font-size: 1.8rem;
  }
}
/*------------
lp-p-problem
--------------*/
.lp-p-problem__inner {
  position: relative;
  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;
  gap: 24px;
  padding: 56px 16px;
  background: linear-gradient(135deg, #FFF 0%, #2C4D7A 100%);
}
.lp-p-problem__body {
  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;
  gap: 16px;
}
.lp-p-problem__balloon {
  position: relative;
  min-width: 264px;
  padding: 16px 32px;
  border-radius: 16px;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 10px 0 rgba(0, 0, 0, 0.15);
  font-weight: bold;
}
.lp-p-problem__balloon::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 15px;
  height: 15px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lp-p-problem__balloon--top::before {
  -webkit-transform: translateY(-50%) rotate(20deg);
          transform: translateY(-50%) rotate(20deg);
  top: 70%;
}
.lp-p-problem__balloon--bottom::before {
  -webkit-transform: translateY(-50%) rotate(-20deg);
          transform: translateY(-50%) rotate(-20deg);
  top: 30%;
}

/*------------
sec01
--------------*/
.sec01-layout01 {
  background-color: #e0eff6;
  padding: 35px 0 50px;
}

.sec01-layout02 {
  padding: 95px 0;
}

.sec01-layout03 {
  background: url(../images/lp/fip/sec01_bg.jpg) no-repeat center/cover;
  padding: 80px 0 95px;
}

@media (max-width: 800px) {
  .sec01-layout01 {
    padding: 40px 0;
  }
  .sec01-layout02 {
    padding: 60px 0;
  }
  .sec01-layout03 {
    padding: 60px 0;
  }
}
/*------------
lp-p-technical-challenges
--------------*/
.lp-p-technical-challenges__inner {
  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;
  gap: 48px;
  padding: 56px 0;
}
.lp-p-technical-challenges__lead {
  text-align: center;
}
.lp-p-technical-challenges__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}
@media screen and (max-width: 800px) {
  .lp-p-technical-challenges__list {
    max-width: 375px;
  }
}
.lp-p-technical-challenges__item {
  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;
  gap: 16px;
  max-width: 160px;
}
.lp-p-technical-challenges__item figure {
  padding: 16px;
}
.lp-p-technical-challenges__item-description {
  text-align: center;
}
.lp-p-technical-challenges__emphasis-text {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
.lp-p-technical-challenges__total-support {
  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;
  gap: 32px;
  padding-top: 56px;
}
.lp-p-technical-challenges__total-support-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.lp-p-technical-challenges__total-support-list {
  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: 2px;
}
.lp-p-technical-challenges__total-support-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  max-width: 509px;
  padding: 24px;
  background-color: var(--color_primary);
}
.lp-p-technical-challenges__total-support-item:last-child {
  background-color: transparent;
}
@media screen and (max-width: 520px) {
  .lp-p-technical-challenges__total-support-item {
    -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;
    max-width: 100%;
  }
}
.lp-p-technical-challenges__total-support-item-icon {
  background-color: #fff;
  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;
  width: 172px;
  height: 172px;
  padding: 16px;
}
.lp-p-technical-challenges__total-support-item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: calc(100% - 196px);
}
@media screen and (max-width: 520px) {
  .lp-p-technical-challenges__total-support-item-body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}
.lp-p-technical-challenges__total-support-item-title {
  position: relative;
  padding-bottom: 16px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 520px) {
  .lp-p-technical-challenges__total-support-item-title {
    text-align: center;
  }
}
.lp-p-technical-challenges__total-support-item-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}
@media screen and (max-width: 520px) {
  .lp-p-technical-challenges__total-support-item-title::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.lp-p-technical-challenges__total-support-item-description {
  color: #fff;
}
.lp-p-technical-challenges__total-support-item-tips {
  padding: 32px;
  background-color: #ecf5f9;
  border-radius: 32px;
}
.lp-p-technical-challenges__total-support-item-tips-text {
  font-size: 1.4rem;
}
.lp-p-technical-challenges__footer {
  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;
  gap: 24px;
}
.lp-p-technical-challenges__footer-text {
  font-size: 1.4rem;
  text-align: center;
}
.lp-p-technical-challenges__footer-button {
  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;
  gap: 8px;
}
.lp-p-technical-challenges__footer-button-text {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.lp-p-technical-challenges__footer-button-icon {
  width: 24px;
  height: 24px;
  background-color: #fff;
}

/*------------
lp-p-reason
--------------*/
.lp-p-reason__inner {
  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;
  gap: 48px;
  padding: 56px 0;
}
.lp-p-reason__lead {
  text-align: center;
}
.lp-p-reason__list {
  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;
  gap: 16px;
}
.lp-p-reason__item {
  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;
  gap: 24px;
  padding: 24px;
  background-color: var(--color_bg);
}
@media screen and (max-width: 520px) {
  .lp-p-reason__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.lp-p-reason__item-icon {
  overflow: hidden;
  width: 144px;
  height: 144px;
  background-color: #fff;
  border-radius: 50%;
  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;
}
.lp-p-reason__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: calc(100% - 168px);
}
@media screen and (max-width: 520px) {
  .lp-p-reason__item-body {
    width: 100%;
  }
}
.lp-p-reason__item-title {
  font-size: 2rem;
  font-weight: bold;
}

/*------------
sec02
--------------*/
.sec02 .container {
  padding: 45px 0 70px;
}

@media (max-width: 800px) {
  .sec02 .container {
    padding: 40px 0;
  }
}
/*------------
sec03
--------------*/
.sec03 .container {
  padding: 45px 0 70px;
}

.sec03 .box-style01 {
  margin-bottom: 65px;
}

@media (max-width: 800px) {
  .sec03 .container {
    padding: 40px 0;
  }
  .sec03 .box-style01 {
    margin-bottom: 30px;
  }
  .sec03-layout .t-ttl04 {
    margin-bottom: 30px;
  }
}
/*------------
sec04
--------------*/
.sec04 .container {
  padding: 50px 0 70px;
}

.sec04-box {
  background-color: #e7f6f7;
  padding: 25px;
}

@media (max-width: 800px) {
  .sec04 .container {
    padding: 40px 0;
  }
}
/*------------
lp-p-cta
--------------*/
.lp-p-cta {
  background-color: #E0E5EB;
}
.lp-p-cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 48px 0;
  background: url(../images/lp/fip/electrical-work.svg) right bottom/50% no-repeat;
}
@media screen and (max-width: 800px) {
  .lp-p-cta__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-position: bottom;
    background-size: 100%;
    padding-bottom: 224px;
  }
}
.lp-p-cta__body {
  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;
  gap: 16px;
}
@media screen and (max-width: 800px) {
  .lp-p-cta__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.lp-p-cta__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.lp-p-cta__item {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 38px;
}
.lp-p-cta__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: var(--color_primary);
  border-radius: 50%;
}
.lp-p-cta__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 12px;
  background-color: #fff;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="15" height="12" viewBox="0 0 15 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 5.41193L6.18693 10.5L13.5 1.5" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
  mask: url('data:image/svg+xml;utf8,<svg width="15" height="12" viewBox="0 0 15 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 5.41193L6.18693 10.5L13.5 1.5" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
}
.lp-p-cta__balloon {
  position: relative;
  padding: 16px 24px;
  border-radius: 16px;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 10px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
}
.lp-p-cta__balloon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  clip-path: polygon(100% -50%, 100% 100%, 0 0);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 520px) {
  .lp-p-cta__balloon::before {
    top: -8px;
    left: 50%;
    clip-path: polygon(100% 0%, 0% 50%, 100% 100%);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.lp-p-cta__balloon-text {
  font-size: 1.8rem;
  font-weight: bold;
}
.lp-p-cta__balloon-text-highlight-type01 {
  color: var(--color_primary);
  font-size: 2rem;
}
.lp-p-cta__balloon-text-highlight-type02 {
  color: #D90000;
  font-size: 2rem;
}
.lp-p-cta__balloon-text-highlight-type03 {
  position: relative;
  font-size: 2rem;
}
.lp-p-cta__balloon-text-highlight-type03::before, .lp-p-cta__balloon-text-highlight-type03::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #D90000;
}
.lp-p-cta__balloon-text-highlight-type03::before {
  bottom: -3px;
}
.lp-p-cta__balloon-text-highlight-type03::after {
  bottom: -1px;
}
.lp-p-cta__button {
  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;
  gap: 8px;
}
.lp-p-cta__button--secondary {
  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;
  gap: clamp(8px, 3vw, 16px);
  padding: clamp(16px, 4vw, 20px) clamp(24px, 4vw, 32px);
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 48px;
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: bold;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.lp-p-cta__button--secondary::after {
  content: "";
  display: block;
  width: 8px;
  height: 22px;
  margin-top: 2px;
  background-color: #fff;
  -webkit-mask: url(../images/lp/grid-battery/share/icon_arrow_right.svg) no-repeat center/contain;
  mask: url(../images/lp/grid-battery/share/icon_arrow_right.svg) no-repeat center/contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.lp-p-cta__button--secondary:hover {
  background-color: #fff;
  color: var(--color_primary);
}
.lp-p-cta__button--secondary:hover::after {
  background-color: var(--color_primary);
}

/*------------
sec05
--------------*/
.sec05 .container {
  padding: 60px 0 70px;
}

@media (max-width: 800px) {
  .sec05 .container {
    padding: 40px 0;
  }
}
/*------------
sec06
--------------*/
.sec06 .container {
  padding: 40px 0 100px;
}

.sec06-layout + .sec06-layout {
  margin-top: 80px;
}

@media (max-width: 800px) {
  .sec06 .container {
    padding: 40px 0;
  }
  .sec06-layout + .sec06-layout {
    margin-top: 40px;
  }
}
/*------------
sec07
--------------*/
.sec07 .container {
  padding: 50px 0 90px;
}

@media (max-width: 800px) {
  .sec07 .container {
    padding: 40px 0;
  }
}
/*------------
lp-p-faq
--------------*/
.lp-p-faq__inner {
  padding: 56px 0;
}
.lp-p-faq__list {
  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;
  gap: 1px;
  width: 100%;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1020px;
}
.lp-p-faq__item-question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 16px 16px 64px;
  background-color: var(--color_primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.lp-p-faq__item-question:hover {
  opacity: 0.8;
}
.lp-p-faq__item-question[aria-expanded=true] .lp-p-faq__item-question-icon span:last-child {
  opacity: 0;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
.lp-p-faq__item-question::before {
  position: absolute;
  top: 50%;
  left: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "Q";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 100%;
  color: var(--color_primary);
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}
.lp-p-faq__item-question-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
}
.lp-p-faq__item-question-icon span {
  position: absolute;
  display: block;
  background-color: currentColor;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.lp-p-faq__item-question-icon span:first-child {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lp-p-faq__item-question-icon span:last-child {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lp-p-faq__item-answer {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.35s ease;
  transition: grid-template-rows 0.35s ease;
  transition: grid-template-rows 0.35s ease, -ms-grid-rows 0.35s ease;
}
.lp-p-faq__item.is-open .lp-p-faq__item-answer {
  grid-template-rows: 1fr;
}
.lp-p-faq__item-answer-inner {
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.lp-p-faq__item-answer-inner::before {
  position: absolute;
  top: 50%;
  left: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "A";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 100%;
  color: var(--color_primary);
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}
.lp-p-faq__item-answer-inner p {
  padding: 16px 16px 16px 64px;
  margin: 0;
}

/*------------
List
--------------*/
.top-list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 65px;
}

.top-list01 > li {
  width: calc(20% - 13.6px);
}

@media (max-width: 800px) {
  .top-list01 {
    gap: 10px;
    margin-bottom: 30px;
  }
  .top-list01 > li {
    width: calc(33.333% - 6.666px);
  }
}
/*------------
Box
--------------*/
.box-style01 {
  background-color: var(--color_bg);
  padding: 15px 20px 30px;
}

.box-ttl01 {
  color: var(--color_primary);
  font-size: 1.8rem;
  font-weight: bold;
}

@media (max-width: 800px) {
  .box-ttl01 {
    font-size: 1.6rem;
  }
}
.box-style02 {
  border: 2px solid var(--color_primary);
  padding: 5%;
}

.box-style02 .box-ttl {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .box-style02 {
    padding: 20px;
  }
  .box-style02 .box-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
/*------------
Layout
--------------*/
.graph-layout {
  text-align: center;
}

.graph-layout .txt01 {
  color: #ff0000;
  border: 1px solid #ff0000;
  font-weight: bold;
  padding: 7px 15px;
  margin-bottom: 20px;
}

.graph-layout .txt02 {
  font-weight: var(--font_medium);
  margin-bottom: 25px;
  position: relative;
}

.graph-layout .txt02 span {
  position: relative;
  z-index: 2;
}

.graph-layout .txt02::before {
  content: "";
  display: block;
  background: url(../images/lp/fip/share/icon_arrow_down.svg) no-repeat center/contain;
  width: 51px;
  height: 58px;
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.graph-layout .img-arrow {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.graph-layout .txt03 {
  font-weight: bold;
}

/*------------
Table
--------------*/
.table-style01 th,
.table-style01 td {
  padding: 10px;
  border: 1px solid #ddd;
  vertical-align: middle;
}

.table-style01 th {
  background: var(--color_primary);
  color: #fff;
  text-align: center;
}

.table-style01 th.bg01 {
  background: var(--color_sub01);
  color: #333;
}

@media (max-width: 800px) {
  .table-style01.sp-block colgroup {
    display: none;
  }
  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }
  .table-style01.sp-block th {
    border-bottom: none;
  }
}
#gototop {
  position: fixed;
  top: 0;
  right: 2%;
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  #gototop {
    display: none !important;
  }
  #gototop-sp {
    background: #e6ebf1;
    text-align: right;
    padding: 2%;
  }
}
/* footer
------------------------------------------------------------*/
footer {
  width: 100%;
  overflow: hidden;
  background: #7dabcf;
  text-align: center;
  color: #fff;
  z-index: 10;
}

.f-layout01 {
  background-color: var(--color_primary);
  color: #fff;
  padding: 45px 0 55px;
}

.f-txt {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}

/* フッターナビ */
#f_global {
  max-width: 1040px;
  text-align: center;
  margin: 0 auto 40px;
}

.f-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px auto;
}

#f_global ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#f_global li:not(:last-child) {
  margin-right: 6%;
}

#f_global li {
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 40px;
}

#f_global li > a {
  color: #fff;
  letter-spacing: 0;
}

#f_global a:hover,
#f_global li > a:hover {
  opacity: 0.5;
}

nav.f-nav {
  padding-bottom: 30px;
}

.copyright {
  text-align: center;
  clear: both;
}

@media screen and (max-width: 940px) {
  #f_global ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #f_global li {
    width: 33.3333333333%;
  }
  #f_global li:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 0;
  }
  .f-logo {
    margin: 30px auto;
  }
  #f_global {
    display: block;
  }
  #f_global ul {
    display: block;
    width: 100%;
  }
  #f_global li:not(:last-child) {
    margin-right: 0;
  }
  #f_global li {
    width: 100%;
    padding: 0 0 20px;
  }
  nav.f-nav {
    padding-bottom: 10px;
  }
}
.sp-navi {
  display: none;
}

@media (max-width: 1024px) {
  .sp-navi {
    display: block;
  }
  :root {
    --navi-background: #2c4d7a;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
  }
  /* ボタン類 */
  .sp-navi-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--navi-background);
    -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10000;
  }
  .sp-navi-btns > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
  }
  .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    white-space: nowrap;
  }
  .sp-navi-btns .item a {
    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;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
  }
  .sp-navi-btns .item:last-child {
    border-right: none;
  }
  .sp-navi-btns .item .ttl {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
  }
}
/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fade {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 1.1rem;
}

.fs12 {
  font-size: 1.2rem;
}

.fs14 {
  font-size: 1.4rem;
}

.jp {
  font-family: var(--font_jp);
}

.en,
[lang=en] {
  font-family: var(--font_en);
}

.bold,
strong {
  font-weight: bold;
}

.red {
  color: #F44336;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #80FF00));
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

.notice {
  font-size: 1.3rem;
  text-indent: -1.4em;
  padding-left: 1.4em;
}

.arrow {
  color: var(--color_sub01);
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb40_30 {
  margin-bottom: 40px !important;
}

.mb50_30 {
  margin-bottom: 50px !important;
}

.mbXS {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mbXL {
  margin-bottom: 90px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.img-center {
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.col2,
.col3,
.col4 {
  display: grid;
}

.col2.gap,
.col3.gap,
.col4.gap {
  gap: 5%;
}

.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.col4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
  .mb40_30,
  .mb50_30 {
    margin-bottom: 30px !important;
  }
  .mbL {
    margin-bottom: 30px !important;
  }
  .mbXL {
    margin-bottom: 50px !important;
  }
  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
  }
  .col2.gap,
  .col3.gap,
  .col4.gap {
    gap: 30px;
  }
}
/* ボタン */
.btn-more {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  border-radius: 100px;
  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;
  gap: 10px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  min-height: 82px;
  min-width: 623px;
  padding: 10px 15px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
}

.btn-more::after {
  content: "";
  display: block;
  background-color: #fff;
  -webkit-mask: url(../images/lp/fip/share/icon_arrow_right.svg) no-repeat center/contain;
          mask: url(../images/lp/fip/share/icon_arrow_right.svg) no-repeat center/contain;
  width: 13px;
  height: 22px;
  margin-top: 2px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn-more.small {
  font-size: 1.6rem;
  min-height: 50px;
  min-width: 167px;
}

.btn-more.small::after {
  width: 9px;
  height: 14px;
}

.btn-more.white {
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--color_primary);
}

.btn-more.white::after {
  background-color: var(--color_primary);
}

@media (hover: hover) {
  .btn-more:hover {
    background-color: transparent;
    color: var(--color_primary);
  }
  .btn-more:hover::after {
    background-color: var(--color_primary);
  }
  .btn-more.white:hover {
    background-color: var(--color_primary);
    color: #fff;
  }
  .btn-more.white:hover::after {
    background-color: #fff;
  }
}
.btn-out {
  padding-right: 15px;
  position: relative;
}

.btn-out::before {
  content: "";
  background: url(../images/lp/fip/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}

.btn-out::after {
  content: "";
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}

.btn-out:hover::after {
  background-position: left bottom;
  background-size: 100% auto;
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 800px) {
  .btn-more {
    font-size: 2rem;
    width: 100%;
    min-width: 100%;
    min-height: 60px;
  }
  .btn-more.small {
    width: 100%;
    min-width: 100%;
  }
}
/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  opacity: 0;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.card-style01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}

.card-style01 > li {
  background-color: #f5f5f5;
  padding: 15px;
}

.card-style01 .card-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .card-style01 {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
}
.expo_pop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: solid 4px #2c4d7a;
  background: #fffef2;
  max-width: 500px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  opacity: 0.9;
  z-index: 999999;
  padding: 10px 20px 20px;
}

.expo_pop_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#expo_close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: #a2a2a2;
  color: #fff;
  font-weight: bold;
  line-height: 0;
  width: 36px;
  height: 36px;
  padding: 0.5rem;
}

.expo_pop ._img01 {
  width: calc(100% - 72px);
  margin: 0 auto 5px;
}

.expo_pop ._img01 img {
  width: 100%;
}

.expo_pop ._txt01 {
  color: #2c4d7a;
  margin-bottom: 5px;
}

.expo_pop ._txt02 {
  display: inline-block;
  font-size: 16px;
  text-align: left;
  margin-bottom: 5px;
}

.expo_pop ._txt03 {
  color: #2c4d7a;
  font-size: 18px;
  text-align: left;
}

.expo_pop figure.qr img {
  max-width: 80px;
  margin: auto;
}

.expo_pop .fa-play {
  color: #7dabcf;
  margin: 0 15px;
}

.expo_pop ._txt04 {
  font-size: 14px;
  margin-bottom: 10px;
}

#expo_link {
  display: block;
  background: #2c4d7a;
  border: none;
  color: #fff;
  font-size: 24px;
  border-radius: 1rem;
  cursor: pointer;
  -webkit-transition: color 0.3s, opacity 0.3s, background 0.3s;
  transition: color 0.3s, opacity 0.3s, background 0.3s;
  margin: 10px 0;
  padding: 5px;
}

#expo_link i {
  margin-left: 0.5em;
}

#expo_close:hover,
#expo_link:hover {
  opacity: 0.5;
}

#expo_link a {
  color: #fff !important;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

@media screen and (max-width: 800px) {
  .expo_pop {
    width: 90%;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto 10px;
    padding: 10px;
  }
  #expo_close {
    font-size: 16px;
    width: 30px;
    height: 30px;
    padding: 0.5rem;
  }
  .expo_pop ._img01 {
    width: calc(100% - 65px);
  }
  .expo_pop ._txt01,
  .expo_pop ._txt03 {
    font-size: 14px;
  }
  .expo_pop ._txt02 {
    font-size: 14px;
    text-indent: -2.5em;
  }
  .expo_pop ._txt04 {
    font-size: 13px;
  }
  #expo_link {
    font-size: 18px;
  }
}