@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: none;
  box-sizing: border-box;
}

/* iOSサファリで発生する部分的な文字の拡大表示の抑制 */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #323232;
  line-height: 1.8;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 26px;
}

a:link {
  color: #323232;
  text-decoration: none;
}

a:hover {
  color: #323232;
  text-decoration: none;
}

a:visited {
  color: #323232;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border: none;
  -webkit-backface-visibility: hidden; /*クロームの画像ぼけ防止*/
  image-rendering: -webkit-optimize-contrast; /*クロームの画像ぼけ防止*/
}

button {
  border: 0;
  outline: none;
  font-size: 0;
  color: transparent;
  background-color: transparent;
}

#container {
  opacity: 0;
}
#container.view {
  opacity: 1;
  background-image: url(../images/common/bg.jpg);
  background-size: 1px 6px;
  background-repeat: repeat;
}

#splash {
  width: 100%;
  height: 100vh;
  position: fixed;
  scrollbar-width: none;
  display: grid;
  align-items: center;
  justify-items: center;
  background-color: #ffe6f0;
  opacity: 0;
}
#splash div {
  width: 90px;
  height: 118px;
}

#container {
  animation-name: container;
  animation-delay: 0s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes container {
  0% {
    display: none;
  }
  100% {
    display: block;
  }
}

header {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0;
  top: -130px;
  background-color: #fff;
  transition: 0.5s;
  z-index: 1;
}
header.sticky {
  top: 0;
}
header.hide {
  top: -130px;
}
header #logo {
  width: 320px;
}
@media screen and (max-width: 768px) {
  header #logo {
    width: 200px;
  }
}
header #trigger {
  width: 60px;
  position: relative;
  z-index: 3;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header #trigger {
    width: 40px;
  }
}
header #trigger.on #menu_on {
  display: block;
}
header #trigger.on #menu_off {
  display: none;
}
header #trigger.off #menu_on {
  display: none;
}
header #trigger.off #menu_off {
  display: block;
}
header #gnav {
  width: 450px;
  height: 100%;
  position: fixed;
  top: 0;
  right: -450px;
  background-color: #ffe6f0;
  transition: 0.5s;
  opacity: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  header #gnav {
    width: 100%;
  }
}
header #gnav.visible {
  right: 0;
  opacity: 1;
}
header #gnav ul {
  padding: 140px 30px 0 30px;
  margin: 0 0 100px 0;
  display: flex;
  gap: 30px;
  flex-direction: column;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  header #gnav ul {
    padding: 100px 10px 0 10px;
  }
}
header #gnav ul li::before {
  content: "⚫︎ ";
}
header #gnav ul li:nth-child(2)::before {
  color: #64c8fa;
}
header #gnav ul li:nth-child(3)::before {
  color: #ffd428;
}
header #gnav ul li:nth-child(4)::before {
  color: #ff8faa;
}
header #gnav ul li:nth-child(5)::before {
  color: #70d6c4;
}
header #gnav ul li:nth-child(6)::before {
  color: #c0a0df;
}
header #gnav ul li a {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  header #gnav ul li a {
    font-size: 18px;
  }
}
header #gnav div {
  width: 68px;
  margin: auto;
}

#summary {
  padding: 180px 0 720px 0;
  position: relative;
  background-image: url(../images/top/illustration_01.png);
  background-size: 1680px 530px;
  background-position: center bottom 120px;
  background-repeat: repeat-x;
  background-color: #fff;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #summary {
    padding: 0 0 380px 0;
    background-size: 840px 265px;
    background-position: center bottom 40px;
  }
}
#summary #intro {
  margin: 0 auto 280px auto;
}
@media screen and (max-width: 768px) {
  #summary #intro {
    margin: 0 auto 60px auto;
  }
}
#summary #intro #tagline {
  width: min(660px, 100%);
  margin: 0 auto 130px auto;
}
@media screen and (max-width: 768px) {
  #summary #intro #tagline {
    margin: 0 auto;
  }
}
#summary #intro .swiper-wrapper {
  transition-timing-function: linear !important;
}
#summary #intro .swiper-wrapper .swiper-slide {
  width: -moz-max-content;
  width: max-content;
}
#summary #intro .swiper-wrapper .swiper-slide img {
  width: 540px;
  padding: 0 30px;
  backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
  #summary #intro .swiper-wrapper .swiper-slide img {
    width: 300px;
    padding: 0 10px;
  }
}
#summary #leadcopy {
  font-size: 26px;
  font-weight: 700;
  line-height: 3;
  text-align: center;
  padding: 0 20px;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  #summary #leadcopy {
    font-size: 20px;
    text-align: justify;
    line-height: 1.8;
    margin: 0 0 20px 0;
  }
  #summary #leadcopy br {
    display: none;
  }
}
#summary #pic_summary {
  width: 330px;
  margin: 0 auto 140px auto;
}
@media screen and (max-width: 768px) {
  #summary #pic_summary {
    width: 200px;
    margin: 0 auto 80px auto;
  }
}
#summary #title_footage {
  font-size: 36px;
  font-weight: 500;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  padding: 0 0 5px 0;
  margin: 0 auto 50px auto;
  background: linear-gradient(transparent 90%, #fbb8d2 90%);
}
@media screen and (max-width: 768px) {
  #summary #title_footage {
    font-size: 25px;
    margin: 0 auto 30px auto;
  }
}
#summary #footage_area {
  width: min(820px, 100%);
  padding: 0 20px;
  margin: auto;
}
#summary #footage_area #footage {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
#summary #footage_area #footage iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#summary #bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
#summary.active #bg {
  animation-name: bg;
  animation-delay: 0;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes bg {
  0% {
    filter: blur(100px);
  }
  100% {
    filter: blur(0);
  }
}
@media screen and (max-width: 768px) {
  #summary.active #bg {
    display: none;
  }
}

main {
  max-width: 1200px;
  padding: 120px 0 0 0;
  margin: auto;
  display: grid;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  main {
    padding: 80px 20px 0 20px;
    gap: 50px;
  }
}
main .headline {
  width: min(715px, 100%);
  margin: 0 auto 70px auto;
}
@media screen and (max-width: 768px) {
  main .headline {
    padding: 0 20px;
    margin: 0 auto 30px auto;
  }
}
main .thumbnail {
  width: min(800px, 100%);
  margin: 0 auto 60px auto;
}
@media screen and (max-width: 768px) {
  main .thumbnail {
    margin: 0 auto 20px auto;
  }
}
main #title_supporter {
  width: 670px;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 768px) {
  main #title_supporter {
    width: 240px;
  }
}
main .read_copy {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  line-height: 2;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  main .read_copy {
    font-size: 16px;
    text-align: justify;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 768px) {
  main .read_copy br {
    display: none;
  }
}
main .category h3 span {
  background-image: linear-gradient(transparent 75%, #64c8fa 0%);
}
main .category .read_copy span {
  background-image: linear-gradient(transparent 75%, #ffff00 0%);
}
main .license h3 span {
  background-image: linear-gradient(transparent 75%, #ffd428 0%);
}
main .expert h3 span {
  background-image: linear-gradient(transparent 75%, #ff8faa 0%);
}
main .vendor h3 span {
  background-image: linear-gradient(transparent 75%, #70d6c4 0%);
}
main .comment {
  max-width: 500px;
  margin: 0 auto 30px auto;
}
main .category {
  padding: 100px;
  border-radius: 150px;
  background-image: url(../images/top/bg_panel_1.jpg);
  background-size: 1200px 1800px;
  background-position: center top;
  background-repeat: repeat;
}
@media screen and (max-width: 768px) {
  main .category {
    padding: 60px 20px;
    border-radius: 50px;
  }
}
main .category .list_1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin: 0 0 70px 0;
}
@media screen and (max-width: 768px) {
  main .category .list_1 {
    gap: 10px;
    margin: 0 0 10px 0;
  }
}
main .category .list_2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin: 0 0 100px 0;
}
@media screen and (max-width: 768px) {
  main .category .list_2 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 50px 0;
  }
}
main .category .trigger {
  cursor: pointer;
}
main .category .modal section {
  width: 100%;
  height: 100%;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  transition: 0.5s;
  z-index: 4;
}
main .category .modal section::before {
  content: "";
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
main .category .modal section::after {
  content: "";
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
main .category .modal section.active {
  opacity: 1;
  visibility: visible;
}
main .category .modal section article {
  width: 900px;
  margin: 20px 0;
  text-align: justify;
  display: inline-block;
  border-radius: 30px;
  vertical-align: middle;
  background-color: #d5f3fd;
  position: relative;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  main .category .modal section article {
    width: 95%;
  }
}
main .category .modal section article .close {
  width: min(900px, 95%);
  margin: auto;
  display: flex;
  flex-direction: row-reverse;
  position: fixed;
}
main .category .modal section article .close img {
  width: 90px;
  cursor: pointer;
  transform: translate(10px, -10px);
}
@media screen and (max-width: 768px) {
  main .category .modal section article .close img {
    transform: translate(-5px, -15px);
  }
}
main .category .modal section article .intro {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  background-color: #fff;
}
main .category .modal section article .kv_1 {
  width: min(584px, 100%);
  padding: 60px 10px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  main .category .modal section article .kv_1 {
    padding: 30px 10px;
  }
}
main .category .modal section article .kv_1 img {
  margin: 0 0 10px 0;
}
main .category .modal section article .kv_1 figcaption {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
main .category .modal section article .kv_2 {
  width: min(390px, 100%);
  padding: 60px 10px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  main .category .modal section article .kv_2 {
    width: 100%;
    padding: 30px 10px;
  }
}
main .category .modal section article .kv_2 img {
  margin: 0 0 10px 0;
}
main .category .modal section article .kv_2 figcaption {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
main .category .modal section article .detail {
  display: grid;
  gap: 90px;
  padding: 100px 0 50px 0;
}
@media screen and (max-width: 768px) {
  main .category .modal section article .detail {
    padding: 50px 0 50px 0;
  }
}
main .category .modal section article .detail .faq {
  padding: 0 40px;
  display: grid;
  gap: 50px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  background-color: #d5f3fd;
}
@media screen and (max-width: 768px) {
  main .category .modal section article .detail .faq {
    padding: 0 20px;
  }
}
main .category .modal section article .detail .faq dt {
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  padding: 20px;
  margin: 0 0 20px 0;
  border-radius: 30px;
  background-color: #8cd8fb;
}
main .category .modal section article .detail .faq dd {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  padding: 20px;
  border-radius: 30px;
  background-color: #fff;
}
main .category .modal section article .detail .faq_2 dt {
  background-color: #8ce196;
}
main .category .modal section article .detail .pic {
  width: min(340px, 100%);
  margin: 10px auto 0 auto;
}
@media screen and (max-width: 768px) {
  main .category .modal section article .detail .pic {
    width: 100%;
  }
}
main .category .text_1 {
  max-width: 800px;
  padding: 0 0 46px 0;
  margin: 0 auto 30px auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .category .text_1 {
    padding: 0 0 20px 0;
    margin: 0 auto 30px auto;
  }
}
main .category .text_1 article {
  padding: 40px 10px;
  border-radius: 50px;
  background-color: #fff;
}
main .category .text_1 article h4 {
  width: min(515px, 100%);
  margin: 0 auto 20px auto;
}
main .category .text_1 article p {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  main .category .text_1 article p {
    font-size: 16px;
    text-align: justify;
  }
}
@media screen and (max-width: 768px) {
  main .category .text_1 article p br {
    display: none;
  }
}
main .category .text_1 article .illustration_02 {
  max-width: 600px;
  margin: auto;
}
main .category .text_1 .icon_arrow {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-92px, 0);
}
@media screen and (max-width: 768px) {
  main .category .text_1 .icon_arrow {
    width: 40px;
    transform: translate(-20px, 0);
  }
}
main .category .text_2 {
  max-width: 1000px;
  padding: 40px 0 40px 40px;
  margin: auto;
  border: 3px solid #64c8fa;
  border-radius: 50px;
  background-color: rgba(250, 253, 254, 0.5);
}
@media screen and (max-width: 768px) {
  main .category .text_2 {
    padding: 30px 20px;
  }
}
main .category .text_2 article {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  main .category .text_2 article {
    grid-template-columns: 1fr;
  }
}
main .category .text_2 article div:first-child h4 {
  width: 550px;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  main .category .text_2 article div:first-child h4 {
    width: 200px;
    margin: 0 auto 10px auto;
  }
}
main .category .text_2 article div:first-child p {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0 0 0;
  border-top: 1px solid #323232;
}
@media screen and (max-width: 768px) {
  main .category .text_2 article div:first-child p {
    font-size: 16px;
  }
}
main .category .text_2 article div:last-child {
  transform: translate(20px, -70px);
}
@media screen and (max-width: 768px) {
  main .category .text_2 article div:last-child {
    width: 70%;
    margin: 0 auto 20px auto;
    transform: translate(0, 0);
  }
}
main .category .text_2 .linkbutton {
  width: 230px;
  margin: auto;
}
main .license {
  padding: 100px 200px;
  border-radius: 150px;
  background-image: url(../images/top/bg_panel_2.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  main .license {
    padding: 40px 20px;
    border-radius: 50px;
  }
}
main .expert {
  padding: 100px;
  border-radius: 150px;
  background-image: url(../images/top/bg_panel_3.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  main .expert {
    padding: 40px 20px;
    border-radius: 50px;
  }
}
main .vendor {
  padding: 100px 200px;
  border-radius: 150px;
  background-image: url(../images/top/bg_panel_4.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  main .vendor {
    padding: 40px 20px;
    border-radius: 50px;
  }
}
main .support {
  margin: 0 auto 60px auto;
}
main .support .title_support {
  width: min(800px, 100%);
  margin: 0 auto 70px auto;
}
@media screen and (max-width: 768px) {
  main .support .title_support {
    margin: 0 auto 30px auto;
  }
}
main .support ul {
  width: min(1200px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  main .support ul {
    gap: 30px;
  }
}

.link_01 {
  width: min(700px, 100%);
  margin: 0 auto 120px auto;
}
.link_02 {
  width: min(700px, 100%);
  margin: 0 auto;
}
.greetings p {
  font-size: 26px;
  font-weight: 700;
  line-height: 2.5;
  text-align: center;
  padding: 200px 20px 100px 20px;
  background-image: url(../images/top/bg_ball_2.png), url(../images/top/bg_gradation.png);
  background-size: 1600px 171px, 1px 150px;
  background-position: center top, center bottom;
  background-repeat: repeat-x, repeat-x;
}
@media screen and (max-width: 768px) {
  .greetings p {
    font-size: 20px;
    text-align: justify;
    line-height: 1.8;
    padding: 0 20px 50px 20px;
    background-image: none, url(../images/top/bg_gradation.png);
  }
}
@media screen and (max-width: 768px) {
  .greetings p br {
    display: none;
  }
}
.greetings .footer_image {
  background-image: url(../images/top/illustration_04.png);
  background-size: 1747px 378px;
  background-position: center bottom;
  background-repeat: repeat-x;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .greetings .footer_image {
    background-image: none;
  }
}
.greetings .footer_image div {
  width: min(1220px, 100%);
  margin: auto;
  display: flex;
  flex-direction: row-reverse;
}
.greetings .footer_image div img {
  width: 260px;
}
@media screen and (max-width: 768px) {
  .greetings .footer_image div img {
    width: 100%;
  }
}

#title_education {
  width: 440px;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 768px) {
  #title_education {
    width: 200px;
    padding: 0 20px;
  }
}

#title_license {
  width: 760px;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 768px) {
  #title_license {
    width: 240px;
    padding: 0 20px;
  }
}

#title_specialist {
  width: 760px;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 768px) {
  #title_specialist {
    width: 260px;
    padding: 0 20px;
  }
}

#title_environment {
  width: 760px;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 768px) {
  #title_environment {
    width: 240px;
    padding: 0 20px;
  }
}

footer {
  padding: 160px 20px 20px 20px;
  background-color: #ffe6f0;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 120px 20px 20px 20px;
  }
}
footer .logo_footer {
  width: min(500px, 100%);
  margin: 0 auto 150px auto;
}
@media screen and (max-width: 768px) {
  footer .logo_footer {
    padding: 0 20px;
    margin: 0 auto 50px auto;
  }
}
footer .icon_x {
  width: 144px;
  position: absolute;
  right: 5%;
  top: 32%;
}
@media screen and (max-width: 768px) {
  footer .icon_x {
    width: 70px;
    top: 20px;
  }
}
footer p {
  font-size: 12px;
  color: #231815;
  text-align: center;
}/*# sourceMappingURL=common.css.map */