@charset "UTF-8";
/* CSS Document */

body {
  font-size: 14px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: left;
  margin: 0;
  padding: 0;
  color: #333;
  background: #1D539F;
  -webkit-text-size-adjust: 100%;
  position: relative;
}
body *, body *::before, body *::after {
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, p, ul, ol, li, img, table, th, td, dl, dt, dd {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
li {
  list-style-type: none;
}
a {
  cursor: pointer;
  color: #333;
  text-decoration: none;
  transition: opacity .2s;
}
a:hover {
  opacity: .7;
}
img {
  display: block;
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
input, textarea, select, button, label {
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}
button {
  background: none;
  cursor: pointer;
}
#wrap {
  position: relative;
  z-index: 1;
  background: #fff;
}
.sp-only {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}


/* header
-----------------------------------------------*/
header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
header .btn a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #FF763B;
  font-weight: 900;
  font-size: 16px;
  height: 52px;
  border: 2px solid #FF763B;
  border-radius: 10px;
  padding: 0 20px;
  background: #fff;
}
header .btn a::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url("../img/ico-arrow-org.svg");
  background-size: 100%;
}
header .btn a br {
  display: none;
}
@media only screen and (max-width: 767px) {
  header {
    height: 60px;
    padding: 0 20px;
  }
  header .logo {
    max-width: 200px;
  }
  header .btn a {
    display: block;
    font-size: 13px;
    height: auto;
    border-radius: 8px;
    padding: 5px 10px;
    line-height: 1.2;
  }
  header .btn a::after {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin: 0 0 -4px 2px;
  }
  header .btn a br {
    display: block;
  }
}


/* main
-----------------------------------------------*/
main {
  overflow: hidden;
}


/* ttl
-----------------------------------------------*/
.ttl {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ttl p {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}
.ttl h2 {
  font-size: 52px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .ttl p {
    font-size: 16px;
  }
  .ttl h2 {
    font-size: 24px;
  }
}


/* lead
-----------------------------------------------*/
.lead {
  clip-path: inset(0);
  position: relative;
  z-index: 1;
  height: calc(100vh - 80px);
  min-height: 800px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  margin-top: -100px;
}
.lead::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 80px);
  background-size: cover;
  pointer-events: none;
}
.lead .inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.lead h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.lead h2 span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 20px;
}
.lead h2 span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
}
/* lead-01 */
#lead-01::before {
  background-image: url("../img/bgi-lead-01.jpg");
  background-position: center bottom;
}
/* lead-02 */
#lead-02::before {
  background-image: url("../img/bgi-lead-02.jpg");
  background-position: center;
}
#lead-02 h2 {
  align-items: flex-end;
}
/* fade */
.lead h2 span {
  transform: translateY(30px);
  opacity: 0;
  transition: transform .6s,opacity .6s;
}
.lead h2 span:nth-child(2) {
  transition-delay: .3s;
}
.lead h2 span:nth-child(3) {
  transition-delay: .6s;
}
.lead h2 span:nth-child(4) {
  transition-delay: .9s;
}
.lead .fade h2 span {
  transform: translateY(0);
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .lead {
    padding: 140px 20px;
    margin-top: -40px;
    height: calc(100vh - 60px);
    min-height: 0;
  }
  .lead::before {
    height: calc(100vh - 60px);
  }
  .lead h2 {
    font-size: 16px;
    line-height: 1.5;
  }
  .lead h2 span {
    padding: 16px;
  }
  /* lead-02 */
  #lead-02 h2 {
    align-items: flex-start;
  }
}


/* contact
-----------------------------------------------*/
.contact {
  position: relative;
  padding: 140px 40px 140px;
}
.contact .inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}
/* contact-01 */
#contact-01 {
  margin-top: -100px;
  z-index: 2;
}
#contact-01::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #1554B2, #104593);
  border-radius: 0 100px 300px 0;
}
#contact-01::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: calc(100% - 100px);
  background: #D3ECFE;
}
/* contact-02 */
#contact-02 {
  background: linear-gradient(to right, #1554B2, #104593);
  border-radius: 300px 0 0 300px;
}
#contact-02::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 300px;
  background: #F6FBFF;
}
/* contact-03 */
#contact-03 {
  z-index: 2;
  background: linear-gradient(to right, #1554B2, #104593);
  border-radius: 0 100px 0 0;
  margin-top: -100px;
}
.contact .ttl h2 {
  color: #fff;
  text-align: center;
  white-space: pre-wrap;
  word-break: keep-all;
}
.contact .ttl h2 span {
  display: inline-block;
  background: #fff;
  color: #1D539F;
  padding: 0 10px;
  border-radius: 10px;
  margin: 0 5px;
}
.contact .contact-box {
  display: flex;
  background: #fff;
  border-radius: 30px;
  filter: drop-shadow(5px 5px 30px rgba(0,0,0,.25));
  margin-top: 120px;
  padding: 50px 0;
}
.contact .contact-box .contact-download {
  position: relative;
  flex: 0.35;
  border-right: 1px solid #333;
}
.contact .contact-box .contact-tel {
  position: relative;
  flex: 0.65;
}
.contact .contact-box .contact-download::before,
.contact .contact-box .contact-tel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translate(-50%,0);
}
.contact .contact-box .contact-download::before {
  background: url("../img/ico-download.svg");
  width: 74px;
  height: 84px;
}
.contact .contact-box .contact-tel::before {
  top: -100px;
  background: url("../img/ico-contact.svg");
  width: 84px;
  height: 101px;
}
.contact .contact-box h3 {
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  width: 100%;
  white-space: pre-wrap;
  word-break: keep-all;
}
.contact .contact-box h4 {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}
.contact .contact-box .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 60px;
  border-radius: 40px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 20px auto 0;
}
.contact .contact-box .contact-download,
.contact .contact-box .contact-tel {
  display: flex;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 0;
}
.contact .contact-box .contact-download .btn {
  background: linear-gradient(to right, #5565F6, #232A83);
}
.contact .contact-box .contact-tel .btn {
  background: linear-gradient(to right, #FFBB00, #FF6321);
}
.contact .contact-box .contact-download {
  padding: 32px 0;
}
.contact .contact-box .contact-tel {
  padding: 32px 40px;
}
.contact .contact-box .contact-tel .col {
  flex: 1;
}
.contact .contact-box .contact-tel .col .tel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.contact .contact-box .contact-tel .col .tel .tel-txt {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
.contact .contact-box .contact-tel .col .tel .tel-link {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.contact .contact-box .contact-tel .col .tel .tel-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.contact .contact-box .contact-tel .col .tel .tel-note {
  font-size: 12px;
  line-height: 1.3;
}
@media only screen and (max-width: 1023px) {
  .contact .contact-box {
    flex-direction: column;
    padding: 20px 40px;
    margin-top: 80px;
  }
  .contact .contact-box .contact-download {
    border-right: none;
    border-bottom: 1px solid #333;
  }
  .contact .contact-box .contact-tel {
    padding: 32px 0;
  }
  .contact .contact-box .contact-download::before,
  .contact .contact-box .contact-tel::before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .contact {
    padding: 50px 20px;
  }
  .contact .ttl h2 {
    line-height: 1.8;
  }
  .contact .ttl h2 span {
    line-height: 1.5;
  }
  /* contact-01 */
  #contact-01 {
    margin-top: -40px;
  }
  #contact-01::before {
    border-radius: 0 40px 40px 0;
  }
  #contact-01::after {
    height: calc(100% - 40px);
  }
  /* contact-02 */
  #contact-02 {
    border-radius: 40px 0 0 40px;
  }
  #contact-02::after {
    height: 40px;
  }
  /* contact-03 */
  #contact-03 {
    border-radius: 0 40px 0 0;
    margin-top: -40px;
  }
  .contact .contact-box {
    flex-direction: column;
    padding: 10px 20px;
    margin-top: 30px;
  }
  .contact .contact-box h3 {
    font-size: 22px;
  }
  .contact .contact-box h4 {
    font-size: 16px;
  }
  .contact .contact-box .btn {
    width: 240px;
    height: 55px;
    font-size: 16px;
    margin-top: 10px;
  }
  .contact .contact-box .contact-tel {
    flex-direction: column;
    gap: 30px;
  }
}


/* kv
-----------------------------------------------*/
#kv {
  position: relative;
  z-index: 1;
  height: 700px;
  padding: 140px 40px 0;
}
#kv::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("../img/bgi-kv.jpg") no-repeat center / cover;
  overflow: hidden;
  clip-path: ellipse(100% 97% at 50% 0%);
  transform: translateZ(0);
}
#kv .inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: right;
}
#kv .txt {
  display: inline-block;
  text-align: left;
}
#kv .txt h1,
#kv .txt p {
  color: #fff;
  filter: drop-shadow(0 0 6px rgba(0,0,0,.6));
}
#kv .txt h1 span {
  display: block;
  font-size: 60px;
  line-height: 1.2;
}
#kv .txt h1 strong {
  display: block;
  font-size: 80px;
  line-height: 1.2;
  margin-top: 10px;
  font-feature-settings: "palt";
}
#kv .txt p {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
}
#kv .txt .btn {
  position: absolute;
  left: 0;
  bottom: 103px;
  width: 100%;
  text-align: center;
}
#kv .txt .btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 80px;
  border-radius: 40px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  background: linear-gradient(to right, #FFBB00, #FF6321);
  padding: 0 40px;
  opacity: 1;
  transition: background .2s;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.45));
}
#kv .txt .btn a:hover {
  background: #FF9871;
}
#kv .txt .btn a::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url(../img/ico-arrow-org-wht.svg);
  background-size: 100%;
}
#kv .txt .btn a br {
  display: none;
}
#kv .bnr {
  position: absolute;
  right: 40px;
  bottom: 0;
}
#kv .bnr a {
  display: block;
  width: 300px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  opacity: 1;
}
#kv .bnr a img {
  transition: opacity .2s;
  widows: 100%;
}
#kv .bnr a:hover img {
  opacity: .7;
}
@media only screen and (max-width: 1300px) {
  #kv .txt .btn {
    left: 40px;
    bottom: 0;
    text-align: left;
  }
  #kv .txt .btn a {
    border-radius: 60px;
    padding: 0 60px;
    height: 120px;
    filter: drop-shadow(0 5px 6px rgba(0,0,0,.2));
  }
  #kv .txt .btn a br {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #kv {
    height: auto;
    padding: 80px 20px 0;
  }
  #kv::before {
    background: url("../img/bgi-kv-sp.jpg") no-repeat center / cover;
    clip-path: ellipse(150% 94% at 50% 0%);
  }
  #kv .inner {
    text-align: center;
  }
  #kv .txt {
    text-align: right;
  }
  #kv .txt .txt-inner {
    display: inline-block;
    text-align: left;
  }
  #kv .txt h1 span {
    font-size: 22px;
  }
  #kv .txt h1 strong {
    font-size: 32px;
    margin-top: 10px;
  }
  #kv .txt p {
    font-size: 14px;
    margin-top: 10px;
  }
  #kv .txt .btn {
    position: relative;
    left: 0;
    margin-top: 20px;
  }
  #kv .txt .btn a {
    height: 60px;
    width: 100%;
    font-size: 16px;
    padding: 0 20px;
    filter: drop-shadow(0 5px 12px rgba(0,0,0,.45));
  }
  #kv .txt .btn a br {
    display: none;
  }
  #kv .bnr {
    position: relative;
    right: 0;
  }
  #kv .bnr a {
    width: 200px;
    margin: 30px auto 0;
    border-radius: 12px;
  }
}


/* award
-----------------------------------------------*/
#award {
  padding: 80px 40px 0;
}
#award .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#award ul {
  display: flex;
  gap:10px;
}
#award .note {
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  #award ul {
    flex-wrap: wrap;
    gap: 10px;
  }
  #award ul li {
    width: calc(50% - 5px);
  }
}
@media only screen and (max-width: 767px) {
  #award {
    padding: 30px 20px 0;
  }
  #award .note {
    font-size: 10px;
  }
}


/* ansin
-----------------------------------------------*/
#ansin {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 70px 40px 180px;
  border-radius: 100px;
}
#ansin .inner {
  max-width: 1240px;
  margin: 0 auto;
}
#ansin .ttl {
  text-align: center;
}
#ansin .ttl p {
  color: #1D539F;
}
#ansin .ttl h2 .bg {
  position: relative;
}
#ansin .ttl h2 .bg::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  height: 20px;
  width: 100%;
  background: #4492FF;
}
#ansin .ttl h2 .sub {
  display: block;
  font-size: 40px;
  line-height: 1.5;
}
#ansin .box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}
#ansin .col {
  position: relative;
  display: flex;
  align-items: flex-end;
}
#ansin .problem {
  position: relative;
  z-index: 2;
  background-image: linear-gradient(70deg, #044682, #1554B2);
  color: #fff;
  min-width: 686px;
  width: 686px;
  min-height: 350px;
  border-radius: 20px;
  padding: 65px 200px 65px 100px;
  margin-bottom: 40px;
  filter: drop-shadow(5px 5px 30px rgba(0,0,0,.25));
}
#ansin .problem h3 {
  display: inline-flex;
  align-items: flex-end;
  font-size: 28px;
  line-height: 1.2;
  border-bottom: solid 2px #fff;
  padding-bottom: 10px;
}
#ansin .box:nth-child(2) .problem h3 {
  font-size: 24px;
}
#ansin .problem h3 span {
  font-size: 48px;
}
#ansin .problem h3 .sub strong {
  font-size: 32px;
}
#ansin .problem ul {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#ansin .problem ul li {
  font-size: 16px;
  font-weight: bold;
  text-indent: -1em;
  margin-left: 1em;
}
#ansin .problem .img {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 170px;
}
#ansin .solution {
  position: relative;
  z-index: 1;
}
#ansin .solution::before {
  content: "";
  z-index: -1;
  position: absolute;
  right: 0;
  top: -65px;
  width: calc(100% + 300px);
  height: calc(100% + 65px);
  background: #D3ECFE;
  border-radius: 20px;
}
#ansin .solution .txt {
  padding: 0 40px 50px 60px;
}
#ansin .solution .txt h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  line-height: 1;
  color: #1655B3;
  font-weight: 400;
}
#ansin .solution .txt h3 strong {
  border-bottom: solid 2px #1655B3;
  padding-bottom: 5px;
}
#ansin .solution .txt h3 {
  font-size: 28px;
  text-align: left;
  color: #1655B3;
  font-weight: 900;
}
#ansin .solution .txt p {
  font-size: 16px;
  line-height: 2;
  text-align: left;
  margin-top: 20px;
}
@media only screen and (max-width: 1320px) {
  #ansin .col {
    display: block;
    max-width: 686px;
    margin: 0 auto;
  }
  #ansin .problem {
    margin-bottom: 0;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,.15));
  }
  #ansin .solution::before {
    top: 0;
    width: calc(100% + 0px);
    height: calc(100% + 0px);
  }
  #ansin .solution .txt {
    padding: 80px 60px 50px 60px;
    margin-top: -30px;
  }
}
@media only screen and (max-width: 767px) {
  #ansin {
    padding: 40px 20px 60px;
    border-radius: 40px;
  }
  #ansin .ttl h2 .bg::before {
    height: 10px;
  }
  #ansin .ttl h2 .sub {
    font-size: 20px;
  }
  #ansin .box {
    margin-top: 30px;
  }
  #ansin .problem {
    min-width: 100%;
    width: 100%;
    border-radius: 20px;
    padding: 40px 20px 0 20px;
    text-align: center;
    min-height: 100%;
  }
  #ansin .problem h3 {
    font-size: 22px;
  }
  #ansin .box:nth-child(2) .problem h3 {
    font-size: 20px;
  }
  #ansin .problem h3 span {
    font-size: 28px;
    text-align: left;
  }
  #ansin .problem h3 .sub strong {
    font-size: 24px;
    text-align: left;
  }
  #ansin .problem ul li {
    font-size: 16px;
    text-align: left;
  }
  #ansin .problem .img {
    position: relative;
    right: 0;
    bottom: 0;
    width: 120px;
    margin: 20px auto 0;
  }
  #ansin .solution .txt {
    padding: 70px 25px 25px 25px;
  }
  #ansin .solution .txt h3 {
    font-size: 22px;
  }
  #ansin .solution .txt p {
    font-size: 16px;
    line-height: 2;
    text-align: left;
    margin-top: 10px;
  }
}


/* safety
-----------------------------------------------*/
#safety {
  position: relative;
  background: #D3ECFE;
  padding: 120px 60px 140px;
  border-radius: 300px 0 0 300px;
}
#safety::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 300px;
  background: linear-gradient(to right, #1554B2, #104593);
}
#safety::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 300px;
  background: #F6FBFF;
}
#safety .inner {
  max-width: 1200px;
  margin: 0 auto;
}
#safety .ttl {
  margin-bottom: 56px;
}
#safety .ttl p {
  color: #1D539F;
}
#safety .ttl h2 span {
  position: relative;
  z-index: 1;
  display: inline-block;
}
#safety .ttl h2 span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  height: 20px;
  width: 100%;
  background: #4492FF;
}
#safety .col-box {
  display: flex;
  flex-direction: column;
  gap: 115px;
}
#safety .col-box .col2 {
  display: flex;
  gap: 60px;
}
#safety .col-box .col2 .img {
  width: 100%;
}
#safety .col-box .col2 .img img {
  margin: 0 auto;
}
#safety .col-box .col2-01 .img {
  max-width: 436px;
  margin: 0 auto;
}
#safety .col-box .col2 .txt {
  max-width: 460px;
  width: 100%;
}
#safety .col-box .col2 .txt h4 {
  font-size: 28px;
  line-height: 1.8;
  font-weight: bold;
}
#safety .col-box .col2 .txt p {
  font-size: 16px;
  line-height: 2;
  margin-top: 16px;
}
#safety .col-box .col2 .txt p.note {
  font-size: 12px;
  line-height: 1.7;
}
@media only screen and (max-width: 1023px) {
  #safety .col-box .col2 {
    flex-direction: column;
    gap: 20px;
  }
  #safety .col-box .col2-02 {
    flex-direction: column-reverse;
  }
  #safety .col-box .col2 .txt {
    max-width: 100%;
  }
  #safety .col-box .col2-01 .img {
    max-width: 400px;
    margin: 0 auto;
  }
  #safety .col-box .col2-02 .img {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  #safety {
    padding: 60px 20px;
    border-radius: 40px 0 0 40px;
  }
  #safety::before {
    height: 40px;
  }
  #safety::after {
    height: 40px;
  }
  #safety .ttl h2 span::before {
    height: 10px;
  }
  #safety .col-box {
    gap: 65px;
  }
  #safety .col-box .col2 .txt h4 {
    font-size: 20px;
  }
  #safety .col-box .col2 .txt p {
    font-size: 16px;
    margin-top: 16px;
  }
  #safety .col-box .col2 .txt p.note {
    font-size: 12px;
  }
  #safety .col-box .col2-01 .img {
    max-width: 260px;
  }
}


/* solution
-----------------------------------------------*/
#solution {
  position: relative;
  background: #F6FBFF;
  padding: 120px 40px 180px;
  border-radius: 0 300px 300px 0;
}
#solution::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 300px;
  background: #D3ECFE;
}
#solution .inner {
  max-width: 1200px;
  margin: 0 auto;
}
#solution .ttl p {
  color: #1D539F;
}
#solution .ttl h2 span {
  position: relative;
  z-index: 1;
  display: inline-block;
}
#solution .ttl h2 span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  height: 20px;
  width: 100%;
  background: #4492FF;
}
#solution .col2 {
  display: flex;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 60px;
}
#solution .col2 .col {
  overflow: hidden;
  width: calc(50% - 20px);
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 5px 5px 30px rgba( 0, 0, 0, 0.25);
}
#solution .col2 .col .img img {
  width: 100%;
}
#solution .col2 .col .txt {
  margin: 35px 40px 40px;
}
#solution .col2 .col .txt h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1D539F;
  line-height: 1.5
}
#solution .col2 .col .txt p {
  font-size: 16px;
  line-height: 2;
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  #solution {
    padding: 60px 20px;
    border-radius: 0 40px 40px 0;
  }
  #solution::before {
    height: 40px;
  }
  #solution .ttl h2 span::before {
    height: 10px;
  }
  #solution .col2 {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  #solution .col2 .col {
    width: 100%;
    box-shadow: 5px 5px 15px rgba( 0, 0, 0, 0.15);
  }
  #solution .col2 .col .txt {
    margin: 25px 25px 25px;
  }
  #solution .col2 .col .txt h4 {
    font-size: 20px;
  }
  #solution .col2 .col .txt p {
    margin-top: 12px;
  }
}


/* case
-----------------------------------------------*/
#case {
  overflow: hidden;
  background: #fff;
  padding: 120px 40px 120px;
}
#case .inner {
  max-width: 1200px;
  margin: 0 auto;
}
#case .ttl p {
  color: #1D539F;
}
#case .note {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  background: #D3ECFE;
  padding: 30px 40px;
  text-align: center;
  border-radius: 20px;
  white-space: pre-wrap;
  word-break: keep-all;
  line-height: 1.2;
}
#case .note strong {
  font-size: 40px;
  font-weight: 700;
  color: #1D539F;
}
#case .note span {
  font-size: 14px;
  font-weight: 400;
}
#case h4 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #333;
  width: fit-content;
  margin: 40px auto;
}
#case .ttl h2 span {
  position: relative;
  z-index: 1;
  display: inline-block;
}
#case .ttl h2 span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  height: 20px;
  width: 100%;
  background: #4492FF;
}
#case .img {
  margin-top: 40px;
}
#case .case-carousel {
  margin-top: 60px;
  text-align: center;
}
#case .case-carousel .slick-list li {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 50px;
  text-align: left;
}
#case .case-carousel .slick-list li .thumb {
  overflow: hidden;
  border-radius: 20px;
}
#case .case-carousel .slick-list li .thumb img {
  width: 100%;
}
#case .case-carousel .slick-list li .txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#case .case-carousel .slick-list li .txt dl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#case .case-carousel .slick-list li .txt dl dd {
  padding: 8px 20px;
  line-height: 1;
  border: 2px solid #2296FF;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #2296FF;
}
#case .case-carousel .slick-list li .txt .sub {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
#case .case-carousel ul li .txt h3 {
  font-size: 28px;
  color: #2296FF;
  line-height: 1.5;
}
#case .case-carousel ul li .txt .summary {
  font-size: 16px;
  line-height: 1.7;
}
#case .case-carousel ul li .txt .name {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  #case .case-carousel .slick-list li {
    margin: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  #case {
    padding: 60px 20px 80px;
  }
  #case .ttl h2 span::before {
    height: 10px;
  }
  #case .note {
    font-size: 16px;
    margin-top: 30px;
    padding: 15px 20px;
    border-radius: 12px;
  }
  #case .note strong {
    font-size: 30px;
  }
  #case .note span {
    font-size: 12px;
  }
  #case .img {
    margin-top: 30px;
  }
  #case .case-carousel {
    margin-top: 20px;
  }
  #case .case-carousel .slick-list li {
    margin: 0 10px;
    gap: 15px;
  }
  #case .case-carousel .slick-list li .thumb {
    border-radius: 12px;
  }
  #case .case-carousel .slick-list li .txt {
    gap: 5px;
  }
  #case .case-carousel .slick-list li .txt dl {
    gap: 8px;
  }
  #case .case-carousel .slick-list li .txt dl dd {
    padding: 8px 10px;
    font-size: 12px;
  }
  #case .case-carousel ul li .txt h3 {
    font-size: 20px;
  }
  #case .case-carousel ul li .txt .summary {
    font-size: 14px;
  }
  #case .case-carousel ul li .txt .name {
    font-size: 14px;
  }
}


/* cause
-----------------------------------------------*/
#cause {
  position: relative;
  background: #F6FBFF;
  padding: 120px 40px 100px;
  border-radius: 0 300px 300px 0;
}
#cause::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 300px;
  background: linear-gradient(to right, #1554B2, #104593);
}
#cause .inner {
  max-width: 1200px;
  margin: 0 auto;
}
#cause h2 {
  font-size: 32px;
  text-align: center;
}
#cause h2 span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 38px;
}
#cause h2 span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  height: 20px;
  width: 100%;
  background: #4492FF;
}
#cause .txt-inner {
  max-width: 800px;
  margin: 60px auto 0;
}
#cause h3 {
  font-size: 28px;
  color: #1d539f;
  font-weight: bold;
}
#cause p {
  font-size: 16px;
  line-height: 2;
  margin-top: 20px;
}
#cause .note {
  font-size: 14px;
  line-height: 1.5;
}
#cause .note a {
  text-decoration: underline;
  opacity: 1;
}
#cause .note a:hover {
  text-decoration: none;
}
#cause h4 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #333;
  width: fit-content;
  margin: 60px auto 0;
}
#cause .graph {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
}
#cause .graph p.cap {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}
@media only screen and (max-width: 900px) {
  #cause .graph {
    margin: 40px auto 50px;
  }
}
@media only screen and (max-width: 767px) {
  #cause {
    padding: 60px 20px;
    border-radius: 0 40px 40px 0;
  }
  #cause::before {
    height: 40px;
  }
  #cause h2 {
    font-size: 20px;
  }
  #cause h2 span {
    font-size: 24px;
  }
  #cause h2 span::before {
    height: 10px;
  }
  #cause .txt-inner {
    margin: 40px auto 0;
  }
  #cause h3 {
    font-size: 20px;
  }
  #cause h4 {
    font-size: 16px;
  }
  #cause .note {
    font-size: 12px;
  }
  #cause .img {
    font-size: 16px;
  }
}


/* faq
-----------------------------------------------*/
#faq {
  position: relative;
  z-index: 2;
  padding: 120px 40px 170px;
  border-radius: 0 0 100px 100px;
  background: #fff;
}
#faq .inner {
  max-width: 1000px;
  margin: 0 auto;
}
#faq .ttl p {
  color: #1D539F;
}
#faq ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 60px;
}
#faq ul li {
  position: relative;
}
#faq ul li::before,
#faq ul li::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 47px;
  width: 25px;
  height: 2px;
  background: #1D539F;
  transform: translateY(-50%);
  transition: transform .3s;
}
#faq ul li::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
}
#faq ul li.active::after {
  transform: translateY(-50%) rotate(0deg);
}
#faq ul li h3 {
  font-size: 20px;
  line-height: 1.5;
  padding: 30px 70px 30px 0;
  color: #576063;
  cursor: pointer;
  display: flex;
  gap: 20px;
}
#faq ul li h3::before {
  content: "Q";
  color: #1D539F;
  font-weight: 700;
  line-height: 1;
  font-size: 24px;
}
#faq ul li .answer {
  display: none;
  border-top: 1px solid #ccc;
}
#faq ul li p {
  display: flex;
  gap: 20px;
  font-size: 16px;
  line-height: 2;
  padding: 30px 0 30px 0;
}
#faq ul li p::before {
  content: "A";
  color: #E50018;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: 3px;
}
#faq ul li p a {
  text-decoration: underline;
  opacity: 1;
}
#faq ul li p a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #faq {
    padding: 80px 20px;
    border-radius: 0 0 40px 40px;
  }
  #faq ul {
    gap: 12px;
    margin-top: 30px;
  }
  #faq ul li::before,
  #faq ul li::after {
    right: 0;
    top: 34px;
    width: 20px;
  }
    #faq ul li h3 {
    font-size: 18px;
    padding: 20px 40px 20px 0;
    gap: 20px;
  }
  #faq ul li h3::before {
    font-size: 20px;
    position: relative;
    top: 2px;
  }
  #faq ul li p {
    gap: 20px;
    font-size: 16px;
    padding: 30px 0 30px 0;
  }
  #faq ul li p::before {
    font-size: 20px;
    top: 5px;
  }
}


/* follow
-----------------------------------------------*/
#follow {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: #fff;
  padding: 0 40px;
}
#follow .inner {
  max-width: 900px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#follow .tel .tel-txt {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
#follow .tel .tel-link {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
#follow .tel .tel-link a {
  display: flex;
  align-items: center;
  gap: 4px;
}
#follow .tel .tel-note {
  font-size: 10px;
  line-height: 1.3;
}
#follow .tel .tel-note br {
  display: none;
}
#follow .btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
#follow .btn p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
#follow .btn ul {
  display: flex;
  gap: 8px;
}
#follow .btn ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  border-radius: 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
#follow .btn ul li a.btn-download {
  background: linear-gradient(to right, #5565F6, #232A83);
}
#follow .btn ul li a.btn-contact {
  background: linear-gradient(to right, #FFBB00, #FF6321);
}
#follow .btn ul li a br {
  display: none;
}
@media only screen and (max-width: 880px) {
  #follow .tel .tel-txt {
    font-size: 11px;
  }
  #follow .tel .tel-link {
    font-size: 26px;
  }
  #follow .tel .tel-note {
    font-size: 8px;
  }
  #follow .btn p {
    font-size: 16px;
  }
  #follow .btn ul li a {
    width: 130px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  #follow {
    padding: 0 10px 0 15px;
  }
  #follow .inner {
    justify-content: center;
    height: 60px;
    gap: 10px;
  }
  #follow .tel .tel-txt {
    font-size: 9px;
  }
  #follow .tel .tel-link a {
    font-size: 18px;
    gap: 0;
  }
  #follow .tel .tel-link a img {
    width: 20px;
  }
  #follow .tel .tel-note {
    display: none;
  }
  #follow .tel .tel-note br {
    display: block;
  }
  #follow .btn p {
    display: none;
  }
  #follow .btn ul {
    gap: 5px;
  }
  #follow .btn ul li a {
    width: 95px;
    font-size: 11px;
  }
  #follow .btn ul li a br {
    display: block;
  }
}


/* footer
-----------------------------------------------*/
footer {
  background: #1D539F;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
footer ul li {
  display: flex;
  font-size: 14px;
}
footer ul li:not(:last-child)::after {
  content: "｜";
}
footer ul li a {
  color: #fff;
  text-decoration: underline;
}
footer ul li a:hover {
  text-decoration: none;
  opacity: 1;
}
footer .copy {
  font-size: 12px;
  width: 100%;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  footer {
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px 20px;
  }
  footer .logo {
    max-width: 240px;
  }
  footer .copy {
    font-size: 10px;
    text-align: center;
  }
}


/* slick
-----------------------------------------------*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-dots {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.slick-dots li button {
  display: block;
  border: none;
  font-size: 0;
  background: #2296FF;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  transition: opacity .2s;
  cursor: pointer;
  opacity: .2;
}
.slick-dots li button:hover,
.slick-dots li.slick-active button  {
  opacity: 1;
}
.slick-arrow {
  font-size: 0;
  transition: opacity .2s;
  position: absolute;
  bottom: -18px;
  transform: translateX(-50%);
}
.slick-prev {
  left: 50%;
  margin-left: -60px;
}
.slick-next {
  left: 50%;
  margin-left: 60px;
}
.slick-arrow:hover {
  opacity: .7;
}
.slick-prev::before,
.slick-next::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background: url(../img/ico-arrow-blu.svg);
  background-size: 100%;
  font-size: 0;
}
.slick-next::before {
  transform: scaleX(-1);
}
@media screen and (max-width: 750px) {
  .slick-prev {
    margin-left: -40px;
  }
  .slick-next {
    margin-left: 40px;
  }
  .slick-dots {
    margin-top: 30px;
  }
}


/* modal
-----------------------------------------------*/
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  overflow-y: auto;
  text-align: center;
  font-size: 0;
  padding: 80px 40px;
}
.modal .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
}
.modal::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal .inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 980px;
  width: calc(100% - 2px);
  margin: 0 auto;
}
.modal .close {
  position: absolute;
  right: 0;
  top: -50px;
  cursor: pointer;
}
.modal .close span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
}
.modal .close span::before,
.modal .close span::after {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  margin-left: -50%;
}
.modal .close span::before {
  transform: rotate(-45deg);
}
.modal .close span::after {
  transform: rotate(45deg);
}
.modal .box {
  aspect-ratio: 16 / 9;
}
.modal .box iframe {
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-width: 767px) {
  .modal {
    padding: 0 0;
  }
  .modal .inner {
    position: relative;
    border-radius: 0;
    height: auto;
    padding: 20px;
  }
  .modal .close {
    top: -26px;
    right: 20px;
  }
  .modal .close span {
    width: 36px;
    height: 36px;
  }
}


/* graph
-----------------------------------------------*/
.graph .sp {
  display: none;
}
.graph .pc {
  display: block;
}
.graph ol, .graph ul {
  list-style: none;
}
.graph-txt {
  position: absolute;
  /*width: 90px;*/
  white-space: nowrap;
  /*opacity: 0;*/
  text-align: left;
}
.graph-txt_title {
  margin: 0;
  color: #0d71c1;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}
.graph-txt_count {
  margin: 4px 0 0;
  padding-bottom: 5px;
  line-height: 1;
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
}
.graph-txt_count .number, .graph-txt_count .number_mini, .graph-txt_count .number_micro {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 4rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: -2px;
}
.graph-txt_count .number {
  font-size: 2.5rem;
  font-style: italic;
  color: #000000;
  font-weight: bold;
}
.graph-txt_count .number_mini {
  font-size: 1.8rem;
  font-style: italic;
}
.graph-txt_count .number_micro {
  /* font-size: 1.5rem; */
  font-size: 1.8rem;
  font-style: italic;
}
.pieChart_wrap {
  position: relative;
  width: 100%;
  height: 450px;
  font-weight: bold;
  text-align: center;
}
.equipment_pieChart01 {
  margin: 4rem auto 7rem;
}
.equipment_pieChart02 {
  margin: 3rem auto;
}
.pieChart_flex {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: space-between;
}
.pieChart_mini {
  width: 40%;
  position: relative;
}
.pieChart_big {
  width: 60%;
  position: relative;
  font-weight: bold;
  text-align: center;
}
.pieChart_legend01 {
  position: absolute;
  top: 6%;
  left: 13%;
}
.pieChart_legend02 {
  position: absolute;
  bottom: -3%;
  right: 5%;
}
.pieChart_legend03 {
  position: absolute;
  bottom: 20%;
  right: 5%;
}
.pieChart_legend04 {
  position: absolute;
  bottom: -10%;
  right: 0;
  left: 0;
  margin: auto;
}
.pieChart_legend05 {
  position: absolute;
  top: 50%;
  left: 10%;
}
.pieChart_legend06 {
  position: absolute;
  top: 26%;
  left: 13%;
}
.graph-txt::before, .graph-txt::after {
  content: "";
  display: inline-block;
  height: 1px;
  background-color: #939393;
  position: absolute;
}
.graph-txt::before {
  top: 7px;
}
.pieChart01_legend01 {
  top: 20%;
  right: 0;
}
.pieChart01_legend02 {
  bottom: 10%;
  left: 0;
}
.pieChart01_legend03 {
  top: 18%;
  left: 0;
}
.pieChart01_legend04 {
  top: -3%;
  left: 0;
}
.pieChart01_legend01::before {
  width: 27px;
  left: -36px;
}
.pieChart01_legend01::after {
  width: 32px;
  top: 20px;
  left: -62px;
  -webkit-transform: rotate(310deg);
  transform: rotate(310deg);
}
.pieChart01_legend02::before {
  width: 63px;
  right: -56px;
}
.pieChart01_legend02::after {
  width: 28px;
  top: -3px;
  right: -79px;
  -webkit-transform: rotate(310deg);
  transform: rotate(310deg);
}
.pieChart01_legend03::before {
  width: 100px;
  right: -108px;
}
.pieChart01_legend03::after {
  width: 25px;
  top: 19px;
  right: -121px;
  -webkit-transform: rotate(265deg);
  transform: rotate(265deg);
}
.pieChart01_legend04::before {
  width: 46px;
  right: -22px;
}
.pieChart01_legend04::after {
  width: 109px;
  top: 61px;
  right: -82px;
  -webkit-transform: rotate(265deg);
  transform: rotate(265deg);
}
.pieChart02_legend01 {
  top: 27%;
  right: 0;
}
.pieChart02_legend02 {
  top: 10%;
  left: 7%;
}
.pieChart02_legend01::before {
  width: 44px;
  left: -52px;
}
.pieChart02_legend02::before {
  width: 30px;
  right: -36px;
}
.pieChart02_legend02::after {
  width: 38px;
  top: 23px;
  right: -64px;
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}
.pieChart03_legend01 {
  top: 30%;
  right: 0;
}
.pieChart03_legend02 {
  bottom: 0;
  right: 0;
}
.pieChart03_legend03 {
  top: 54%;
  left: 0;
}
.pieChart03_legend04 {
  top: 31.5%;
  left: 0;
}
.pieChart03_legend05 {
  top: 18%;
  left: 0;
}
.pieChart03_legend06 {
  top: 5%;
  left: 0;
}
.pieChart03_legend07 {
  top: -8%;
  left: 0;
}
.pieChart03_legend08 {
  top: 0;
  right: 17%;
}
.pieChart03_legend01::before {
  width: 43px;
  left: -53px;
}
.pieChart03_legend01::after {
  width: 38px;
  top: 22px;
  left: -84px;
  -webkit-transform: rotate(310deg);
  transform: rotate(310deg);
}
.pieChart03_legend02::before {
  width: 143px;
  left: -156px;
}
.pieChart03_legend02::after {
  width: 30px;
  top: -6px;
  left: -178px;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.pieChart03_legend03::before {
  width: 87px;
  right: -91px;
}
.pieChart03_legend04::before {
  width: 95px;
  right: -95px;
}
.pieChart03_legend05::before {
  width: 71px;
  right: -71px;
}
.pieChart03_legend05::after {
  width: 50px;
  top: 23px;
  right: -115px;
  -webkit-transform: rotate(220deg);
  transform: rotate(220deg);
}
.pieChart03_legend06::before {
  width: 85px;
  right: -85px;
}
.pieChart03_legend06::after {
  width: 95px;
  top: 43px;
  right: -163px;
  -webkit-transform: rotate(230deg);
  transform: rotate(230deg);
}
.pieChart03_legend07::before {
  width: 220px;
  right: -205px;
}
.pieChart03_legend07::after {
  width: 127px;
  top: 62px;
  right: -300px;
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}
.pieChart03_legend08::before {
  width: 213px;
  left: -223px;
}
.pieChart03_legend08::after {
  width: 62px;
  top: 38px;
  left: -256px;
  -webkit-transform: rotate(275deg);
  transform: rotate(275deg);
}
.pieChart04_legend01 {
  top: 22%;
  right: 10%;
}
.pieChart04_legend02 {
  bottom: 10%;
  left: 10%;
}
.pieChart04_legend03 {
  top: 36%;
  left: 10%;
}
.pieChart04_legend04 {
  top: 18%;
  left: 10%;
}
.pieChart04_legend05 {
  top: 0;
  left: 10%;
}
.pieChart04_legend06 {
  top: 0;
  right: 12.5%;
}
.pieChart04_legend01::before {
  width: 50px;
  left: -58px;
}
.pieChart04_legend01::after {
  width: 60px;
  top: 30px;
  left: -107px;
  -webkit-transform: rotate(310deg);
  transform: rotate(310deg);
}
.pieChart04_legend02::before {
  width: 186px;
  left: 43px;
}
.pieChart04_legend03::before {
  width: 60px;
  right: -68px;
}
.pieChart04_legend04::before {
  width: 199px;
  right: -168px;
}
.pieChart04_legend05::before {
  width: 210px;
  right: -196px;
}
.pieChart04_legend05::after {
  width: 72px;
  top: 42px;
  right: -241px;
  -webkit-transform: rotate(255deg);
  transform: rotate(255deg);
}
.pieChart04_legend06::before {
  width: 247px;
  left: -255px;
}
.pieChart04_legend06::after {
  width: 62px;
  top: 38px;
  left: -288px;
  -webkit-transform: rotate(275deg);
  transform: rotate(275deg);
}
.balloon_txt {
  line-height: 1.2;
}
.balloon_txt span {
  font-size: 180%;
}
.pieChart_balloon01 {
  position: absolute;
  bottom: -6%;
  right: 5%;
}
.pieChart_balloon02 {
  position: absolute;
  bottom: -15%;
  right: 30%;
}
.balloon_legend01 {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  /*width: 1.06667em;
  height: 0.8em;*/
  background: #e48e00;
  /*border: 0.1em solid currentColor;*/
  border-radius: 0.2em;
  box-sizing: content-box;
  padding: .8rem .8rem .4rem .8rem;
  color: #fff;
  line-height: 1.2;
}
.balloon_legend01::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 10%;
  width: .8em;
  height: .8em;
  background: inherit;
  /*border: 0.1em solid currentColor;
  border-top-color: transparent;
  border-top-width: 0.14142em;*/
  border-right-color: transparent;
  border-right-width: 0.3em;
  border-left-color: transparent;
  border-left-width: 0.3em;
  border-bottom-color: transparent;
  border-bottom-width: 0.3em;
  box-sizing: content-box;
  border-radius: 0 0 0 0.1em;
  transform: skewY(45deg);
  transform-origin: left top;
}
.balloon_legend01b {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  /*width: 1.06667em;
  height: 0.8em;*/
  background: #000;
  /*border: 0.1em solid currentColor;*/
  border-radius: 0.2em;
  box-sizing: content-box;
  padding: .8rem .8rem .4rem .8rem;
  color: #fff;
  line-height: 1.2;
}
.balloon_legend01b::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 40%;
  width: .8em;
  height: .8em;
  background: inherit;
  /*border: 0.1em solid currentColor;
  border-top-color: transparent;
  border-top-width: 0.14142em;*/
  border-right-color: transparent;
  border-right-width: 0.3em;
  border-left-color: transparent;
  border-left-width: 0.3em;
  border-bottom-color: transparent;
  border-bottom-width: 0.3em;
  box-sizing: content-box;
  border-radius: 0 0 0 0.1em;
  transform: skewY(45deg);
  transform-origin: left top;
}
.balloon_legend02 {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  /*width: 1.06667em;
  height: 0.8em;*/
  background: #e48e00;
  /*border: 0.1em solid currentColor;*/
  border-radius: 0.2em;
  box-sizing: content-box;
  padding: .8rem .8rem .4rem .8rem;
  color: #fff;
  line-height: 1.2;
}
.balloon_legend02::before {
  content: '';
  position: absolute;
  top: -18%;
  left: 10%;
  width: .8em;
  height: .8em;
  background: inherit;
  /*border: 0.1em solid currentColor;
  border-top-color: transparent;
  border-top-width: 0.14142em;*/
  border-right-color: transparent;
  border-right-width: 0.3em;
  border-left-color: transparent;
  border-left-width: 0.3em;
  border-bottom-color: transparent;
  border-bottom-width: 0.3em;
  box-sizing: content-box;
  border-radius: 0 0 0 0.1em;
  transform: skewY(45deg);
  transform-origin: left top;
}
@media screen and (max-width: 900px) {
  .graph .sp {
    display: block;
  }
  .graph .pc {
    display: none;
  }
  .graph-txt_title {
    font-size: 13px;
  }
  .graph-txt_count .number {
    font-size: 1.6rem;
  }
  .graph-txt_count .number_mini {
    font-size: 1.2rem;
  }
  .graph-txt_count .number_micro {
    font-size: 1.2rem;
    font-weight: 300;
  }
  .pieChart_wrap {
    height: 350px;
  }
  .pieChart_flex {
    width: 100%;
    height: auto;
    display: block;
  }
  .pieChart_mini {
    /* width: 100%; */
    width: 355px;
    position: relative;
    margin: 0 auto;
  }
  .pieChart_big {
    /* width: 100%; */
    width: 355px;
    margin: 0 auto;
    position: relative;
    font-weight: bold;
    text-align: center;
  }
  .pieChart_wrap {
    width: 355px;
    margin: 0 auto;
  }
  .pieChart01_legend01 {
    top: 25%;
    right: 1%;
  }
  .pieChart01_legend02 {
    bottom: 13%;
    left: 15%;
  }
  .pieChart01_legend03 {
    top: 11%;
    left: 4%;
  }
  .pieChart01_legend04 {
    top: -8%;
    left: 0;
  }
  .pieChart01_legend01::before {
    content: none;
    /*width: 27px;
	left: -36px;*/
  }
  .pieChart01_legend01::after {
    content: none;
    /*width: 32px;
	top: 20px;
	left: -62px;
	-webkit-transform: rotate(310deg);
	transform: rotate(310deg);*/
  }
  .pieChart01_legend02::before {
    content: none;
    /*width: 63px;
	right: -56px;*/
  }
  .pieChart01_legend02::after {
    content: none;
    /*width: 28px;
	top: -3px;
	right: -79px;
	-webkit-transform: rotate(310deg);
	transform: rotate(310deg);*/
  }
  .pieChart01_legend03::before {
    width: 109px;
    right: -118px;
  }
  .pieChart01_legend03::after {
    width: 23px;
    top: 18px;
    right: -131px;
    -webkit-transform: rotate(260deg);
    transform: rotate(260deg);
  }
  .pieChart01_legend04::before {
    width: 87px;
    right: -66px;
  }
  .pieChart01_legend04::after {
    width: 80px;
    top: 47px;
    right: -110px;
    -webkit-transform: rotate(265deg);
    transform: rotate(265deg);
  }
  .pieChart02_legend01 {
    top: 45%;
    /* right: 0; */
    right: 1%;
  }
  .pieChart02_legend02 {
    top: 18%;
    left: 5%;
  }
  .pieChart02_legend01::before {
    content: none;
    /*width: 30px;
	left: -37px;*/
  }
  .pieChart02_legend02::before {
    content: none;
    /*width: 30px;
	right: -36px;*/
  }
  .pieChart02_legend02::after {
    content: none;
    /*width: 38px;
	top: 23px;
	right: -64px;
	-webkit-transform: rotate(240deg);
	transform: rotate(240deg);*/
  }
  .pieChart03_legend01 {
    top: 8%;
    right: 0;
  }
  .pieChart03_legend02 {
    bottom: 0;
    right: 0;
  }
  .pieChart03_legend03 {
    top: 55%;
    left: 0;
  }
  .pieChart03_legend04 {
    top: 34%;
    left: 0;
  }
  .pieChart03_legend05 {
    top: 12%;
    left: 0;
  }
  .pieChart03_legend06 {
    top: -1%;
    left: 0;
  }
  .pieChart03_legend07 {
    top: -3%;
    left: 0;
  }
  .pieChart03_legend08 {
    top: -6%;
    right: 14%;
  }
  .pieChart03_legend01::before {
    content: none;
    /*width: 43px;
	left: -53px;*/
  }
  .pieChart03_legend01::after {
    content: none;
    /*width: 38px;
	top: 22px;
	left: -84px;
	-webkit-transform: rotate(310deg);
	transform: rotate(310deg);*/
  }
  .pieChart03_legend02::before {
    width: 73px;
    left: -80px;
  }
  .pieChart03_legend02::after {
    content: none;
    /*width: 30px;
	top: -6px;
	left: -178px;
	-webkit-transform: rotate(60deg);
	transform: rotate(60deg);*/
  }
  .pieChart03_legend03::before {
    content: none;
    /*width: 26px;
	right: -30px;*/
  }
  .pieChart03_legend04::before {
    content: none;
    /*width: 18px;
	right: -22px;*/
  }
  .pieChart03_legend05::before {
    content: none;
    /*width: 100px;
	right: -100px;*/
  }
  .pieChart03_legend05::after {
    width: 44px;
    top: 39px;
    right: -25px;
    -webkit-transform: rotate(261deg);
    transform: rotate(261deg);
  }
  .pieChart03_legend06::before {
    content: none;
    /*width: 85px;
	right: -85px;*/
  }
  .pieChart03_legend06::after {
    width: 84px;
    top: 53px;
    right: 4px;
    -webkit-transform: rotate(235deg);
    transform: rotate(235deg);
  }
  .pieChart03_legend07::before {
    width: 69px;
    right: -59px;
  }
  .pieChart03_legend07::after {
    width: 86px;
    top: 48px;
    right: -113px;
    -webkit-transform: rotate(255deg);
    transform: rotate(255deg);
  }
  .pieChart03_legend08::before {
    width: 82px;
    left: -92px;
  }
  .pieChart03_legend08::after {
    width: 84px;
    top: 49px;
    left: -137px;
    -webkit-transform: rotate(275deg);
    transform: rotate(275deg);
  }
  .pieChart04_legend01 {
    top: 17%;
    right: 0;
  }
  .pieChart04_legend02 {
    bottom: 18%;
    left: 4%;
    /*bottom: 10%;
        right: 0;*/
  }
  .pieChart04_legend03 {
    top: 36%;
    left: 0;
  }
  .pieChart04_legend04 {
    top: 22%;
    left: 0;
  }
  .pieChart04_legend05 {
    top: 4%;
    left: 0;
  }
  .pieChart04_legend06 {
    top: 3%;
    right: 5%;
  }
  .pieChart04_legend01::before {
    content: none;
    /*width: 28px;
	left: -34px;*/
  }
  .pieChart04_legend01::after {
    content: none;
    /*width: 23px;
	top: 16px;
	left: -53px;
	-webkit-transform: rotate(310deg);
	transform: rotate(310deg);*/
  }
  .pieChart04_legend02::before {
    content: none;
    /*width: 60px;
	left: -67px;*/
  }
  .pieChart04_legend03::before {
    /* content: none; */
    width: 22px;
    right: -25px;
  }
  .pieChart04_legend04::before {
    width: 89px;
    right: -68px;
  }
  .pieChart04_legend05::before {
    width: 92px;
    right: -85px;
  }
  .pieChart04_legend05::after {
    width: 49px;
    top: 30px;
    right: -116px;
    -webkit-transform: rotate(255deg);
    transform: rotate(255deg);
  }
  .pieChart04_legend06::before {
    width: 115px;
    left: -124px;
  }
  .pieChart04_legend06::after {
    width: 45px;
    top: 29px;
    left: -148px;
    -webkit-transform: rotate(275deg);
    transform: rotate(275deg);
  }
  .pieChart_balloon02 {
    width: 100%;
    bottom: -26%;
    right: 0;
    left: 0;
    margin: auto;
  }
  .balloon_legend02::before {
    content: none;
    position: absolute;
    /*top: -18%;
  left: 42%;
  width: .8em;
  height: .8em;
  background: inherit;
  border-right-color: transparent;
  border-right-width: 0.3em;
  border-left-color: transparent;
  border-left-width: 0.3em;
  border-bottom-color: transparent;
  border-bottom-width: 0.3em;
  box-sizing: content-box;
  border-radius: 0 0 0 0.1em;
  transform: skewY(45deg);
  transform-origin: left top;*/
  }
}