html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
html.preload {
  font-size: 1px !important;
}
html.preload * {
  transition: none !important;
  visibility: hidden;
  max-width: 100%;
}
@media (max-width: 959px) {
  html {
    font-size: calc(var(--vw) / 375);
  }
}
@media (min-width: 960px) and (max-width: 1600px) {
  html {
    font-size: calc(var(--vw) / 1440);
  }
}
@media (min-width: 1600.1px) {
  html {
    font-size: 1.25px;
  }
}

html {
  overflow-x: hidden;
}

body {
  background: #fff;
  font-size: 14rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: #000;
  text-align: justify;
  text-justify: inter-ideograph;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  font-feature-settings: "palt";
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  opacity: 0;
  animation: fadeIn 0.4s ease-in forwards;
}
@media screen and (min-width: 959.1px), print {
  body {
    font-size: 16rem;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (min-width: 959.1px), print {
  body.no-scroll {
    overflow: visible;
    position: static;
  }
}

a,
input[type=button],
input[type=submit],
button {
  color: #000;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  a,
  input[type=button],
  input[type=submit],
  button {
    transition: 0.2s;
  }
  a:hover,
  input[type=button]:hover,
  input[type=submit]:hover,
  button:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}
a:visited,
input[type=button]:visited,
input[type=submit]:visited,
button:visited {
  color: #000;
}

.sp-only {
  display: block !important;
}
@media screen and (min-width: 959.1px), print {
  .sp-only {
    display: none !important;
  }
}

.pc-only {
  display: none !important;
}
@media screen and (min-width: 959.1px), print {
  .pc-only {
    display: block !important;
  }
}

section,
nav,
header,
footer,
article,
p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  color: #000;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul li {
  margin: 0;
  padding: 0;
}

dl,
dt,
dd {
  margin: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input,
textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  caret-color: transparent;
}

/*------------------------------------------*/
#main-area {
  background: #ECF7F0;
}
@media screen and (min-width: 959.1px), print {
  #main-area {
    display: flex;
    align-items: stretch;
  }
}

main {
  margin-top: 70rem;
  width: 100%;
}
@media screen and (min-width: 959.1px), print {
  main {
    margin-top: 0;
    width: calc(100% - 300rem);
  }
}

header {
  width: 100%;
  height: 70rem;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
@media screen and (min-width: 959.1px), print {
  header {
    width: 300rem;
    height: auto;
    position: inherit;
  }
}
header .inner {
  margin: 0 20rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 959.1px), print {
  header .inner {
    margin: 0 30rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
header .inner h1 {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  font-weight: 400;
}
@media screen and (min-width: 959.1px), print {
  header .inner h1 {
    margin-top: 50rem;
    gap: 10rem;
    width: 100%;
  }
}
header .inner h1 .txt {
  font-size: 10rem;
  line-height: 1;
}
@media screen and (min-width: 959.1px), print {
  header .inner h1 .txt {
    font-size: 12rem;
  }
}
header .inner h1 .img {
  max-width: 240rem;
  height: auto;
}
@media screen and (min-width: 959.1px), print {
  header .inner h1 .img {
    max-width: 100%;
  }
}
header .inner nav {
  position: fixed;
  top: 70rem;
  bottom: 0;
  right: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  background: #fff;
  overflow-y: auto;
  pointer-events: none;
}
@media screen and (min-width: 959.1px), print {
  header .inner nav {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    margin: 0 -30rem;
  }
}
header .inner nav .block {
  margin: 40rem 20rem 0;
}
@media screen and (min-width: 959.1px), print {
  header .inner nav .block {
    margin: 40rem 30rem 0;
  }
}
header .inner nav .block:last-child {
  margin: 40rem 20rem 40rem;
}
@media screen and (min-width: 959.1px), print {
  header .inner nav .block:last-child {
    margin: 40rem 30rem 40rem;
  }
}
header .inner nav .block.search form {
  width: 100%;
  height: 50rem;
  background: #eee;
  border-radius: 5rem;
  line-height: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .inner nav .block.search form input {
  font-size: 16rem;
  padding: 20rem;
  width: 100%;
  flex: 1;
}
@media screen and (min-width: 959.1px), print {
  header .inner nav .block.search form input {
    padding: 15rem;
    font-size: 15rem;
  }
}
header .inner nav .block.search form input::placeholder {
  color: #aaa;
}
header .inner nav .block.search form button {
  width: 50rem;
  height: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .inner nav .block.search form button img {
  width: 20rem;
  height: auto;
}
header .inner nav .block.industry h2, header .inner nav .block.benefit h2, header .inner nav .block.tag h2 {
  display: flex;
  align-items: center;
  gap: 10rem;
  line-height: 1;
  font-size: 20rem;
}
@media screen and (min-width: 959.1px), print {
  header .inner nav .block.industry h2, header .inner nav .block.benefit h2, header .inner nav .block.tag h2 {
    font-size: 18rem;
  }
}
header .inner nav .block.industry h2 .icn, header .inner nav .block.benefit h2 .icn, header .inner nav .block.tag h2 .icn {
  width: 25rem;
  height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .inner nav .block.industry h2 .icn .icn1, header .inner nav .block.benefit h2 .icn .icn1, header .inner nav .block.tag h2 .icn .icn1 {
  width: 24rem;
}
header .inner nav .block.industry h2 .icn .icn2, header .inner nav .block.benefit h2 .icn .icn2, header .inner nav .block.tag h2 .icn .icn2 {
  width: 24rem;
}
header .inner nav .block.industry ul.type1, header .inner nav .block.benefit ul.type1, header .inner nav .block.tag ul.type1 {
  margin-top: 20rem;
}
header .inner nav .block.industry ul.type1 li a, header .inner nav .block.benefit ul.type1 li a, header .inner nav .block.tag ul.type1 li a {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 20rem;
  margin: -1px -20rem 0;
  box-sizing: border-box;
  font-size: 16rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  gap: 20rem;
}
@media screen and (min-width: 959.1px), print {
  header .inner nav .block.industry ul.type1 li a, header .inner nav .block.benefit ul.type1 li a, header .inner nav .block.tag ul.type1 li a {
    font-size: 15rem;
    padding: 20rem 30rem;
    margin: -1px -30rem 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  header .inner nav .block.industry ul.type1 li a:hover, header .inner nav .block.benefit ul.type1 li a:hover, header .inner nav .block.tag ul.type1 li a:hover {
    opacity: 1;
    color: #47AF67;
  }
}
header .inner nav .block.industry ul.type1 li a::after, header .inner nav .block.benefit ul.type1 li a::after, header .inner nav .block.tag ul.type1 li a::after {
  content: "";
  display: block;
  width: 10rem;
  min-width: 10rem;
  height: 16rem;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'><path d='M1.06427 0L0 1.07813L3.87145 5L0 8.91933L1.06427 10L6 5L1.06427 0Z' fill='%23fff'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'><path d='M1.06427 0L0 1.07813L3.87145 5L0 8.91933L1.06427 10L6 5L1.06427 0Z' fill='%23fff'/></svg>") center/contain no-repeat;
  mask-mode: alpha;
}
@media screen and (min-width: 959.1px), print {
  header .inner nav .block.industry ul.type1 li a::after, header .inner nav .block.benefit ul.type1 li a::after, header .inner nav .block.tag ul.type1 li a::after {
    width: 6rem;
    min-width: 6rem;
    height: 10rem;
  }
}
header .inner nav .block.industry ul.type2, header .inner nav .block.benefit ul.type2, header .inner nav .block.tag ul.type2 {
  margin-top: 20rem;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
header .inner nav .block.industry ul.type2 li a, header .inner nav .block.benefit ul.type2 li a, header .inner nav .block.tag ul.type2 li a {
  font-size: 14rem;
  padding: 10rem;
  line-height: 1;
  border-radius: 100vmax;
  border: 1px solid #ddd;
  text-decoration: none;
  box-sizing: border-box;
  display: block;
}
@media screen and (min-width: 959.1px), print {
  header .inner nav .block.industry ul.type2 li a, header .inner nav .block.benefit ul.type2 li a, header .inner nav .block.tag ul.type2 li a {
    font-size: 13rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  header .inner nav .block.industry ul.type2 li a:hover, header .inner nav .block.benefit ul.type2 li a:hover, header .inner nav .block.tag ul.type2 li a:hover {
    opacity: 1;
    color: #47AF67;
    box-shadow: 0 0 10rem rgba(0, 0, 0, 0.1);
  }
}
header .inner nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
header .inner .btn-trigger {
  height: 70rem;
  width: 70rem;
  background: #47AF67;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  caret-color: transparent;
}
@media screen and (min-width: 959.1px), print {
  header .inner .btn-trigger {
    display: none;
  }
}
header .inner .btn-trigger .bar {
  width: 30rem;
  height: 30rem;
  cursor: pointer;
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: relative;
}
header .inner .btn-trigger .bar span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4rem;
  background: #fff;
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
header .inner .btn-trigger .bar span:nth-of-type(1) {
  top: 0;
}
header .inner .btn-trigger .bar span:nth-of-type(2) {
  top: 13rem;
}
header .inner .btn-trigger .bar span:nth-of-type(3) {
  bottom: 0;
}
header .inner .btn-trigger.active .bar span:nth-of-type(1) {
  transform: translateY(13rem) rotate(-45deg);
}
header .inner .btn-trigger.active .bar span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-btn-bar02 0.8s forwards;
}
header .inner .btn-trigger.active .bar span:nth-of-type(3) {
  transform: translateY(-13rem) rotate(45deg);
}
@keyframes active-btn-bar02 {
  100% {
    height: 0;
  }
}

/*------------------------------------------*/
#list .inner {
  padding: 50rem 20rem;
}
@media screen and (min-width: 959.1px), print {
  #list .inner {
    padding: 70rem 50rem;
  }
}
#list .inner ul.item {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}
@media screen and (min-width: 959.1px), print {
  #list .inner ul.item {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
}
@media screen and (min-width: 959.1px), print {
  #list .inner ul.item li {
    width: calc((100% - 40rem) / 3);
  }
}
#list .inner ul.item li a {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10rem;
  padding: 20rem;
  display: block;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  #list .inner ul.item li a:hover {
    opacity: 1;
    box-shadow: 0 0 10rem rgba(0, 0, 0, 0.1);
  }
  #list .inner ul.item li a:hover .img img {
    height: auto;
    transform: scale(1.1);
  }
  #list .inner ul.item li a:hover h3.txt {
    color: #47AF67 !important;
  }
}
#list .inner ul.item li a .img {
  overflow: hidden;
}
#list .inner ul.item li a .img img {
  transition: transform 0.4s ease;
}
#list .inner ul.item li a h3.txt {
  margin-top: 15rem;
  font-size: 15rem;
  transition: 0.2s;
}

/*------------------------------------------*/
/*------------------------------------------*/