@charset "UTF-8";

:root {
  --font-family-base: "dnp-shuei-mgothic-std", "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  --shadow: drop-shadow(5px 5px 0px #0000001a);
  --gradient: linear-gradient(90deg, #18c3dd 0%, #ffdd4a 100%);
}

*,
::before,
::after {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: var(--font-family-base);
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  line-height: 1.2;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  font-style: normal;
  box-sizing: border-box;
  position: relative;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  letter-spacing: -0.05em;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  color: #313A48;
  background-image: var(--gradient);
}

body::before {
  content: "";
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-position: center;
  background-size: cover;
  background-image: url(../img/body_fixed_bg_pc.png);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

input,
textarea {
  margin: 0px;
  padding: 0px;
  background: none;
  border: none;
  border-radius: 0px;
  font-size: 1.6rem;
  font-family: var(--font-family-base);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
  width: 100%;
}

a {
  text-decoration: none;
  background-color: transparent;
  word-break: break-all;
  transition: all 0.2s ease 0s;
  position: relative;
  color: var(--indigo);
}

a.tx-link {
  color: var(--blue);
  text-decoration: underline;
}

a.tx-link:hover {
  color: var(--indigo);
  text-decoration: none;
}

picture img,
img {
  display: block;
  width: 100%;
  height: auto;
  border-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0px;
  appearance: none;
}

@media screen and (max-width: 768px) {
  body::before {
    background-image: url(../img/body_fixed_bg_sp.png);
  }
}

/*----------------------
共通
-----------------------*/
body.no_scroll {
  overflow: hidden;
}

.pc_br {
  display: block;
}

.sp_br {
  display: none;
}

.max-w {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.main section {
  margin-top: 100px;
}

.panel {
  padding: 50px 40px;
  background-color: #fff;
  border-radius: 10px;
  filter: var(--shadow);
}

.copyright {
  padding: 1em 0;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.fixed-btn {
  position: fixed;
  bottom: 40px;
  right: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 290px;
  background-color: rgb(0 221 221);
  padding: 15px;
  text-align: center;
  border-radius: 5px 0 0 5px;
  font-size: 23px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  filter: drop-shadow(5px 5px 0px #ffd41a);
}

.fixed-btn span {
  display: block;
  width: 100%;
  font-size: 0.7em;
  line-height: 1;
  margin-bottom: 0.5em;
}

.fixed-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/arrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.fixed-btn:hover {
  bottom: 45px;
  background-color: rgb(0, 255, 255);
}

@keyframes imgBound {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0, 20px);
  }
}

@media screen and (max-width: 768px) {
  .pc_br {
    display: none;
  }

  .sp_br {
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .main section {
    margin-top: 80px;
  }

  .panel {
    padding: 20px;
  }
}

/*----------------------
header
-----------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 100%;
  background-color: #ffffff82;
  z-index: 99;
}

.headerWrap {
  width: 100%;
  padding: 0 0 0 26px;
  display: flex;
  justify-content: center;
  /* justify-content: space-between; */
  align-items: center;
}

/* .logo {
  display: block;
  width: 208px;
} */

.logo {
  display: block;
  width: 193px;
  padding: 15px 0;
}

.header-r a {
  display: block;
  background-color: #00bcd4;
  color: rgb(255 249 67);
  /*
  background-image: linear-gradient(135deg, #ffd41a 0%, #12C2DD 100%);
  color: #fff;
  */
  background-position: right;
  background-size: 150%;
  font-weight: 600;
  font-size: 18px;
  padding: 20px 100px;
}

.header-r a:hover {
  background-position: left;
  text-shadow: 0 0 10px #689542;
}

@media screen and (max-width: 768px) {
  .header-r a {
    font-size: 16px;
    padding: 20px 70px;
  }
}

@media screen and (max-width: 500px) {
  .header-r {
    width: 45%;
  }

  .header-r a {
    text-align: center;
    font-size: 15px;
    padding: 15px;
  }

  .headerWrap {
    padding: 0 0 0 10px;
  }
}

/*----------------------
MV
-----------------------*/
.mv {
  width: 100%;
  height: 56.22vw;
  min-height: 700px;
  position: relative;
}

.mv h1 img {
  width: 58.71vw;
  height: auto;
  position: absolute;
  left: 5%;
  bottom: 10%;
  z-index: 1;
  filter: drop-shadow(4px 6px 30px rgba(0, 0, 0, 0.3));
}


.mv_img_wrap li {
  position: absolute;
  animation: imgBound 3s linear alternate infinite;
}

.mv_img_wrap li.mv01 {
  width: 9.96vw;
  top: 10%;
  left: 19%;
}

.mv_img_wrap li.mv02 {
  width: 9.05vw;
  top: 8%;
  left: 41%;
  animation-delay: -1s;
}

.mv_img_wrap li.mv03 {
  width: 18.3vw;
  top: 25%;
  left: 42%;
  animation-delay: -2s;
}

.mv_img_wrap li.mv04 {
  width: 31.33vw;
  top: -3%;
  right: 1%;
  animation-delay: -0.8s;
}

.mv_img_wrap li.mv04 img {
  transform: rotate(6deg);
}

.mv_img_wrap li.mv05 {
  width: 10.32vw;
  top: 10%;
  right: 34%;
  animation-delay: -1.8s;
}

.mv_img_wrap li.mv06 {
  width: 12.66vw;
  top: 18%;
  right: 58%;
  animation-delay: -0.6s;
}

.illust01 {
  position: absolute;
  bottom: -7%;
  right: 2%;
  width: 45vw;
}

.illust02 {
  position: absolute;
  top: 22%;
  left: 11%;
  width: 7vw;
  animation: imgBound 3s linear alternate infinite;
  animation-delay: -1.5s;
}

.illust03 {
  position: absolute;
  top: 28%;
  left: 22%;
  width: 7vw;
  animation: imgBound 3s linear alternate infinite;
  animation-delay: -2s;
}

@media screen and (max-width: 1080px) {
  .mv_img_wrap li.mv01 {
    top: 16%;
  }

  .mv_img_wrap li.mv02 {
    top: 20%;
  }

  .mv_img_wrap li.mv03 {
    top: 35%;
  }

  .mv_img_wrap li.mv04 {
    top: 13%;
  }

  .mv_img_wrap li.mv05 {
    top: 20%;
  }

  .mv_img_wrap li.mv06 {
    top: 28%;
  }

  .illust02 {
    top: 27%;
  }

  .illust03 {
    top: 35%;
  }
}

@media screen and (max-width: 768px) {
  .mv {
    height: auto;
    min-height: auto;
    overflow-x: hidden;
  }

  .mv h1 img {
    margin-top: 65%;
    position: relative;
    width: 86%;
    left: 2%;
  }

  .mv_img_wrap li.mv01 {
    width: 24vw;
    top: 14%;
    left: 25%;
    z-index: 1;
  }

  .mv_img_wrap li.mv02 {
    width: 16vw;
    top: 5%;
    left: 23%;
  }

  .mv_img_wrap li.mv03 {
    width: 32vw;
    top: 40%;
    left: 68%;
  }

  .mv_img_wrap li.mv03 img {
    transform: rotate(6deg);
  }

  .mv_img_wrap li.mv04 {
    top: 1%;
    right: -1%;
    width: 55vw;
  }

  .mv_img_wrap li.mv05 {
    width: 17vw;
    top: 3%;
    right: 79%;
  }

  .mv_img_wrap li.mv06 {
    width: 20vw;
    top: 34%;
    right: 18%;
  }

  .illust01 {
    margin-top: 5%;
    position: relative;
    width: 100%;
    bottom: 0;
  }

  .illust02 {
    top: 12%;
    left: 5%;
    width: 19vw;
  }

  .illust03 {
    top: 20%;
    left: 75%;
    width: 19vw;
  }
}

@media screen and (max-width: 500px) {}

/*----------------------
sec01
-----------------------*/
.main section.sec01 {
  margin-top: 150px;
}

.sec01 h2 {
  position: relative;
}

.sec01 h2::before {
  content: "";
  width: 100%;
  height: 30%;
  background-color: rgba(38, 184, 182, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.sec01 h2 img {
  width: 100%;
  max-width: 1080px;
  padding-left: 40px;
  padding-right: 40px;
  margin: auto;
}

.card_wrap {
  background-color: rgba(38, 184, 182, 0.5);
}

.sec01 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 50px;
}

.sec01 li {
  font-size: 20px;
  text-align: center;
  padding: 60px 20px 40px;
  width: calc((100% - 48px) / 3);
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
  margin-top: 80px;
  filter: var(--shadow);
}

.sec01 li:nth-of-type(3n-1) {
  margin-left: 24px;
}

.sec01 li:nth-of-type(3n) {
  margin-left: 24px;
}

.sec01 li::before,
.sec01 li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

.sec01 li::before {
  width: 118px;
  height: 118px;
  background-color: #fff;
}

.sec01 li::after {
  width: 72px;
  height: 72px;
  background-image: url(../img/ck.png);
  background-size: contain;
}

.sec01 li img {
  width: 142px;
  margin: 30px auto 0;
}

@media screen and (max-width: 1080px) {
  .sec01 li {
    font-size: 18px;
  }

  .sec01 li img {
    margin: 25px auto 0;
  }
}

@media screen and (max-width: 860px) {
  .sec01 li {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .main section.sec01 {
    margin-top: 100px;
  }

  .sec01 h2 img {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sec01 li {
    width: calc((100% - 20px) / 2);
  }

  .sec01 li:nth-of-type(3n-1),
  .sec01 li:nth-of-type(3n) {
    margin-left: 0;
  }

  .sec01 li:nth-of-type(2n) {
    margin-left: 20px;
  }
}

@media screen and (max-width: 600px) {
  .main section.sec01 {
    margin-top: 60px;
  }

  .sec01 li {
    font-size: 14px;
    padding: 30px 20px 20px;
    margin-top: 45px;
  }

  .sec01 li::before {
    width: 64px;
    height: 64px;
  }

  .sec01 li::after {
    width: 26px;
    height: 26px;
  }

  .sec01 li img {
    width: 80px;
    margin: 20px auto 0;
  }
}

@media screen and (max-width: 500px) {
  .sec01 h2 img {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sec01 ul {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sec01 li {
    font-size: 13px;
    width: calc((100% - 10px) / 2);
    padding: 30px 5px 20px;
  }

  .sec01 li:nth-of-type(2n) {
    margin-left: 10px;
  }
}

/*----------------------
sec02
-----------------------*/
.sec02 h2 img {
  width: 100%;
  max-width: 1080px;
  padding-left: 40px;
  padding-right: 40px;
  margin: auto;
}

.point_wrap {

  padding-top: 50px;
  padding-bottom: 50px;
  background-color: rgba(255, 255, 255, 0.8);
}

.point_wrap ul {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}

.point_wrap ul li {
  width: 80%;
  position: relative;
  background-color: #fff;
  border: solid 3px #26B8B5;
  border-radius: 20px;
  padding: 50px 180px;
  overflow: hidden;
}

.point_wrap ul li+li {
  margin-top: 50px;
}

.point_wrap ul li:nth-of-type(2) {
  margin-left: auto;
}

.point_wrap ul li::before {
  content: "";
  width: 183px;
  height: 183px;
  position: absolute;
  top: -2px;
  left: -4px;
  background-position: left top;
  background-size: contain;
  background-repeat: no-repeat;
}

.point_wrap ul li:nth-of-type(1)::before {
  background-image: url(../img/sec02_point01_pc.png);
}

.point_wrap ul li:nth-of-type(2)::before {
  background-image: url(../img/sec02_point02_pc.png);
}

.point_wrap ul li:nth-of-type(3)::before {
  background-image: url(../img/sec02_point03_pc.png);
}

.point_wrap li h3 {
  color: #26B8B5;
  font-size: 24px;
  margin-bottom: 20px;
}

.point_wrap li p {
  font-size: 18px;
}

.point_wrap .tx-big {
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  margin-top: 50px;
}

.sec02 .img_wrap img {
  position: absolute;
}

.sec02 .img_wrap img:nth-of-type(1) {
  width: 287px;
  top: 4%;
  right: 2%;
}

.sec02 .img_wrap img:nth-of-type(2) {
  width: 204px;
  top: 38%;
  left: 2%;
}

.sec02 .img_wrap img:nth-of-type(3) {
  width: 235px;
  bottom: -2%;
  right: 6%;
}

@media screen and (max-width: 1080px) {
  .point_wrap ul li {
    padding: 30px 100px;
  }

  .point_wrap ul li::before {
    width: 120px;
    height: 120px;
  }

  .sec02 .img_wrap img:nth-of-type(1) {
    width: 230px;
  }

  .sec02 .img_wrap img:nth-of-type(2) {
    width: 180px;
    top: 46%;
  }

  .sec02 .img_wrap img:nth-of-type(3) {
    width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .point_wrap ul li {
    width: 100%;
    padding: 30px 60px 25px 90px;
  }

  .point_wrap ul li+li {
    margin-top: 20px;
  }

  .point_wrap ul li::before {
    width: 90px;
    height: 90px;
  }

  .point_wrap li h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .sec02 .img_wrap {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .sec02 .img_wrap img {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .sec02 .img_wrap img:nth-of-type(1) {
    width: 45%;
  }

  .sec02 .img_wrap img:nth-of-type(2) {
    width: 25%;
    margin: 0 -7% 0 -4%;
    align-self: flex-end;
  }

  .sec02 .img_wrap img:nth-of-type(3) {
    width: 35%;
  }
}

@media screen and (max-width: 600px) {
  .sec02 h2 img {
    padding-left: 10px;
    padding-right: 10px;
  }

  .point_wrap ul {
    padding-left: 10px;
    padding-right: 10px;
  }

  .point_wrap ul li {
    padding: 30px 20px 25px 20px;
  }

  .point_wrap li h3 {
    width: 80%;
    max-width: 165px;
    margin: 0 auto 30px;
    font-size: 18px;
  }

  .point_wrap li p {
    font-size: 15px;
  }

  .point_wrap .tx-big {
    font-size: 20px;
  }
}

@media screen and (max-width: 500px) {
  .point_wrap li p {
    font-size: 14px;
  }

  .point_wrap .tx-big {
    font-size: 18px;
  }
}

/*----------------------
sec03
-----------------------*/
.sec03 h2 {
  width: 76%;
  max-width: 573px;
  margin: 0 auto 30px;
}


.sec03 .panel {
  display: flex;
  position: relative;
}

.sec03 .panel .graph {
  width: 74%;
}

/* 
.sec03 .panel .graph {
  width: 23%;
}

.sec03 .panel .graph+.graph {
  margin-left: 3%;
} */

.sec03 .staff {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 26%;
  max-width: 281px;
}

@media screen and (max-width: 768px) {
  .sec03 h2 {
    width: 60%;
  }

  .sec03 .panel .graph {
    width: 100%;
  }

  .sec03 .staff {
    width: 32%;
    max-width: 100%;
    z-index: -1;
  }
}

@media screen and (max-width: 500px) {}

/*----------------------
sec04
-----------------------*/
.sec04 {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: rgba(255, 228, 75, 0.5);
}

.sec04 h2 {
  max-width: 892px;
  margin: auto;
}

.sec04 ul {
  max-width: 800px;
  padding: 0 20px;
  margin: 30px auto 0;
}

.sec04 li {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.sec04 li+li {
  margin-top: 30px;
}

.sec04 li:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.sec04 li img {
  width: 92px;
}

.sec04 li p {
  font-size: 18px;
  line-height: 1.4;
  padding: 18px 24px;
  background-color: #fff;
  position: relative;
  width: calc(100% - 120px);
  filter: var(--shadow);
  border-radius: 10px 10px 10px 0;
}

.sec04 li p::before {
  content: "";
  border-top: 20px solid transparent;
  border-right: 20px solid #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-100%, 0);
}

.sec04 li:nth-of-type(2n) p {
  border-radius: 10px 10px 0 10px;
}

.sec04 li:nth-of-type(2n) p::before {
  border-right: 20px solid transparent;
  border-bottom: 20px solid #fff;
  left: auto;
  right: 0;
  transform: translate(100%, 0);
}

@media screen and (max-width: 768px) {
  .sec04 li p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 500px) {
  .sec04 h2 {
    width: 85%;
  }

  .sec04 ul {
    padding: 0 10px;
  }

  .sec04 li img {
    width: 65px;
  }

  .sec04 li p {
    font-size: 14px;
    line-height: 1.7;
    padding: 15px 16px;
    width: calc(100% - 80px);
  }

  .sec04 li p::before {
    border-top: 10px solid transparent;
    border-right: 10px solid #ffffff;
  }

  .sec04 li:nth-of-type(2n) p::before {
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
  }
}

/*----------------------
sec05
-----------------------*/
.sec05 h2 {
  max-width: 350px;
  margin: 0 auto 40px;
}

.splide__arrow {
  width: 60px;
  height: 60px;
  opacity: 1;
}

.splide__arrow--prev {
  left: -30px;
}

.splide__arrow--next {
  right: -30px;
}

@media screen and (max-width: 500px) {
  .sec05 h2 {
    max-width: 300px;
    margin: 0 auto 20px;
  }
}

/*----------------------
sec06
-----------------------*/
.sec06 h2 {
  position: relative;
}

.sec06 h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  backdrop-filter: blur(10px) contrast(1.3);
  -webkit-backdrop-filter: blur(10px) contrast(1.3);
  width: 100%;
  height: 80%;
  z-index: -1;

}

.sec06 h2 img {
  max-width: 1080px;
  margin: auto;
}

.arrow_b {
  width: 280px;
  margin: 50px auto 30px;
}

.form-wrap {
  width: 500px;
  margin: auto;
}

@media screen and (max-width: 600px) {
  .form-wrap {
    width: 100%;
  }

  .form-wrap iframe {
    width: 100% !important;
    height: 1500px;
  }
}

@media screen and (max-width: 450px) {
  .form-wrap iframe {
    height: 1640px;
  }
}

@media screen and (max-width: 370px) {
  .form-wrap iframe {
    height: 1680px;
  }
}