/* arguments inittial */
/* font style */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
.fv-content {
  width: 100%;
  height: 100vh;
}

.fv-content-img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/top/fv-img03.webp");
}

.fv-content-img .caption {
  position: absolute;
  right: 25px;
  bottom: 70px;
  font-size: 10px;
  z-index: 3;
}

.fv-content-img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  top: 0;
  left: 0;
}

@media (min-width: 768px) {
  .fv-content-img {
    background-image: url("../img/top/fv-img03-pc.webp");
  }
}

.fv-content-img:after {
  background: rgba(0, 0, 0, 0.5);
}

.fv-content .bottomline {
  position: absolute;
  width: 100%;
  height: 15px;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.fv-content-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .fv-content-title {
    font-size: 48px;
    line-height: 1.2;
  }
}

.fv-content-title-img {
  max-width: 60%;
}

@media (min-width: 768px) {
  .fv-content-title-img {
    max-width: 100%;
  }
}

.fv-content-text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 15px;
  pointer-events: none;
  justify-content: center;
  height: 100%;
}

@media (min-width: 768px) {
  .fv-content-text {
    padding: 100px 50px;
    /*max-width: 1200px;*/
    margin: 0 auto;
    justify-content: flex-end;
  }
}

.fv-content .scroll {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  height: 60px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fv-content .scroll {
    bottom: 0;
  }
}

.fv-content .scroll:after {
  content: "";
  top: 0;
  left: 50%;
  width: 1px;
  height: 90px;
  position: absolute;
  background: #fff;
  animation: scrollanimation 1.3s infinite;
}

.main {
  padding: 50px 15px;
  padding-right: 0;
}

@media (min-width: 768px) {
  .main {
    padding: 70px 15px;
  }
}

.main-subtitle {
  padding: 15px;
  padding-left: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .main-subtitle {
    padding: 30px;
  }
}

.main-inner {
  position: relative;
  width: 100%;
}

.main-inner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(106.5deg, rgba(58, 162, 240, 0.1) 0%, rgba(149, 228, 182, 0.1) 100%);
  top: 0;
  right: 0;
}

@media screen and (min-width: 1000px) {
  .main-inner-bg {
    max-width: calc(100% - ((100% - 1000px) / 2));
  }
}

.main-inner-text {
  padding: 50px;
  line-height: 1.8;
  font-size: 12px;
}

@media (min-width: 768px) {
  .main-inner-text {
    font-size: 16px;
    line-height: 2.5;
  }
}

.sec01-title {
  color: #004da0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .sec01-title {
    font-size: 27px;
  }
}

.sec01-title-text {
  font-size: 12px;
  text-align: center;
  line-height: 2;
  padding: 30px 15px;
}

@media (min-width: 768px) {
  .sec01-title-text {
    font-size: 16px;
    padding: 50px 15px;
  }
}

.sec01-flex {
  display: flex;
  gap: 10px;
  flex-direction: column;
  padding: 15px;
}

@media (min-width: 768px) {
  .sec01-flex {
    width: 100%;
    flex-direction: row;
  }
}

.sec01-flex-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .sec01-flex-col {
    width: calc((100% - 20px) / 3);
  }
}

.sec01-flex-col-frame {
  border: 2px solid #0075c2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sec01-flex-col-frame .title {
  color: #fff;
  background: #0075c2;
  width: 100%;
  text-align: center;
  padding: 5px;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .sec01-flex-col-frame .title {
    font-size: 15px;
    gap: 5px;
    flex-direction: column;
    align-items: center;
  }
}

.sec01-flex-col-frame .text {
  text-align: center;
  font-size: 11px;
  padding: 10px 0;
  line-height: 1.5;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .sec01-flex-col-frame .text {
    font-size: 1.5vw;
  }
}

@media screen and (min-width: 1000px) {
  .sec01-flex-col-frame .text {
    font-size: 16px;
  }
}

.sec01-flex-col .safe {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.sec01-flex-col .safe .bg {
  width: calc((100% - 5px) / 2);
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec01-flex-col .sound .bg {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec01-flex-col .safeandsound {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
}

.sec01-flex-col .safeandsound .fr2 {
  grid-row: 2;
  grid-column: 1 / 3;
}

.sec01-flex-col .safe,
.sec01-flex-col .sound,
.sec01-flex-col .safeandsound {
  min-height: 60px;
}

.sec01-flex-col .bg {
  background: #eeeeef;
  font-size: 12px;
  text-align: center;
  padding: 5px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .sec01-flex-col .bg {
    font-size: 1.2vw;
  }
}

@media screen and (min-width: 1000px) {
  .sec01-flex-col .bg {
    font-size: 13px;
  }
}

.sec01-flex-icon {
  text-align: center;
  font-size: 12px;
  color: #004da0;
  line-height: 1.2;
  font-weight: bold;
}

@media (min-width: 768px) {
  .sec01-flex-icon {
    font-size: 1.5vw;
  }
}

@media screen and (min-width: 1000px) {
  .sec01-flex-icon {
    font-size: 16px;
  }
}

.sec02-contents {
  padding: 15px 15px 30px;
}

.sec02-contents-title {
  position: relative;
  text-align: center;
}

.sec02-contents-title .bg-white {
  background: #fff;
  padding: 0 15px;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.sec02-contents-title .bg-white img {
  height: 30px;
  width: auto;
}

@media (min-width: 768px) {
  .sec02-contents-title .bg-white img {
    height: auto;
  }
}

.sec02-contents-title:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #004da0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sec02-contents-lead {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.sec02-contents-lead .text {
  color: #004da0;
  font-weight: bold;
  font-size: 16px;
}

@media (min-width: 768px) {
  .sec02-contents-lead .text {
    font-size: 27px;
  }
}

.sec02-contents-text {
  text-align: left;
  line-height: 2;
  font-size: 12px;
  padding: 30px 0;
}

@media (min-width: 768px) {
  .sec02-contents-text {
    text-align: center;
    font-size: 16px;
  }
}

.sec02-contents-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sec02-contents-detail .bg-gray {
  background: #e6ebee;
  padding: 10px;
  line-height: 1.5;
  width: 100%;
  max-width: 825px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sec02-contents-detail .bg-gray {
    padding: 15px;
  }
}

.sec02-contents-detail-text {
  text-align: center;
  padding: 10px;
}

.sec02-contents-detail-title {
  text-align: center;
  padding: 10px;
  color: #008783;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .sec02-contents-detail-title {
    font-size: 23px;
  }
}

.sec02-contents-detail .caption {
  padding-top: 10px;
}

.sec02-contents-detail .sound-flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 3px;
  justify-content: space-between;
  align-items: flex-start;
}

.sec02-contents-detail .sound-flex-col {
  position: relative;
  width: calc((100% - 3px) / 2);
  height: 100%;
}

.sec02-contents-detail .sound-flex .title {
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  background: #008783;
  text-align: center;
  padding: 5px;
}

@media (min-width: 768px) {
  .sec02-contents-detail .sound-flex .title {
    font-size: 16px;
  }
}

.sec02-contents-detail .sound-flex .cont {
  position: relative;
  background: #fff;
  height: 100%;
}

.sec02-contents-detail .sound-flex .cont .notice {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 10px;
  color: #fff;
}

.sec02-contents-detail .safeandsound-flex {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 1fr 1fr auto 1fr;
  gap: 8px;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .sec02-contents-detail .safeandsound-flex {
    grid-template-rows: 1fr 1fr auto auto;
  }
}

.sec02-contents-detail .safeandsound-flex-col {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec02-contents-detail .safeandsound-flex .title {
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  background: #008783;
  text-align: center;
  padding: 5px;
  width: 100%;
}

@media (min-width: 768px) {
  .sec02-contents-detail .safeandsound-flex .title {
    font-size: 16px;
  }
}

.sec02-contents-detail .safeandsound-flex .cont {
  position: relative;
  background: #fff;
  height: 100%;
  font-size: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

@media (min-width: 768px) {
  .sec02-contents-detail .safeandsound-flex .cont {
    padding: 10px;
    font-size: 16px;
  }
}

.sec02-contents-detail .safeandsound-flex .cont .notice {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 10px;
  color: #fff;
}

.sec02-contents-detail .safeandsound-flex .img {
  padding: 5px 30px;
}

@media (min-width: 768px) {
  .sec02-contents-detail .safeandsound-flex .img {
    padding: 10px 30px;
    max-width: 300px;
  }
}

.sec02-contents-detail .safeandsound-flex .subtitle {
  color: #008783;
  font-weight: bold;
  grid-column: 1 / 3;
  background: none;
  font-size: 12px;
  font-weight: bold;
  padding: 10px;
}

@media (min-width: 768px) {
  .sec02-contents-detail .safeandsound-flex .subtitle {
    font-size: 23px;
  }
}

.sec02-contents-result {
  color: #fff;
  font-weight: bold;
  font-size: 11px;
  padding: 8px;
  text-align: center;
  background: linear-gradient(175deg, #0073bb 0%, #0075c2 100%);
  max-width: 825px;
  margin: 10px auto 5px;
  letter-spacing: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .sec02-contents-result {
    font-size: 24px;
    padding: 10px;
    margin: 10px auto 10px;
  }
}

@keyframes scrollanimation {
  0% {
    top: 15px;
    height: 1px;
  }
  50% {
    top: 15px;
    height: 70px;
  }
  100% {
    top: 80px;
  }
}
/*# sourceMappingURL=concept.css.map */