@charset "UTF-8";
header {
  width: 100%;
  height: 102px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}
@media screen and (min-width: 768px) {
  header {
    height: 144px;
  }
}
@media screen and (min-width: 1152px) {
  header {
    display: flex;
    justify-content: flex-end;
    padding: 43px 43px 0 0;
  }
}
header .gloval-nav {
  display: none;
}
@media screen and (min-width: 1152px) {
  header .gloval-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #FFFFFF;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.15));
    height: 62px;
    padding: 0 62px 0 31px;
    border-radius: 31px;
  }
  header .gloval-nav li {
    position: relative;
  }
  header .gloval-nav li.down-arrow a {
    padding-right: calc(1.5em + 24px);
  }
  header .gloval-nav li.down-arrow::after {
    display: block;
    content: "";
    position: absolute;
    background: url("../images/icon-arrow-down-k.png") no-repeat center center;
    width: 24px;
    height: 24px;
    top: -0.5em;
    right: calc(1.5em + 5px);
  }
  header .gloval-nav li a {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    line-height: 1;
    font-size: 1.5rem;
    padding: 0 1.3em 0 0;
    color: #141617;
    transition: 0.3s;
  }
  header .gloval-nav li a:hover {
    color: #00B3CD;
  }
}
@media screen and (min-width: 1152px) and (min-width: 1280px) {
  header .gloval-nav li a {
    padding: 0 2em 0 0;
  }
}
@media screen and (min-width: 1152px) {
  header .gloval-nav li .megamenu {
    display: none;
    position: absolute;
    top: 16px;
    left: -20px;
    padding: 18px 20px 1px 34px;
    background-color: #FFFFFF;
    border-radius: 10px;
  }
  header .gloval-nav li:hover .megamenu {
    display: flex;
    justify-content: center;
    animation: megamenuShow 0.3s linear 0s;
    max-height: 9999px;
  }
}
@media screen and (min-width: 1152px) and (min-width: 1152px) {
  header .gloval-nav ul.megamenu-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
  header .gloval-nav ul.megamenu-inner li {
    display: block;
    padding: 0;
    margin: 0 0 1.5em 0px;
  }
  header .gloval-nav ul.megamenu-inner li::after {
    display: block;
    background: #43494C;
    content: "";
    width: 5px;
    height: 1px;
    position: absolute;
    left: -12px;
    top: 0.75em;
  }
  header .gloval-nav ul.megamenu-inner li a {
    white-space: nowrap;
    font-size: 1.3rem;
    padding-right: 0;
  }
}
header .logo {
  position: absolute;
  top: 34px;
  left: 5%;
}
@media screen and (min-width: 768px) {
  header .logo {
    top: 54px;
    left: 51px;
  }
}
header .logo a {
  display: block;
  width: 190px;
  height: auto;
  aspect-ratio: 1/0.18548;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url("../images/risaiku-logo.svg") no-repeat center center;
  background-size: cover;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  header .logo a {
    width: 217px;
    height: 40.17px;
    aspect-ratio: inherit;
  }
  header .logo a:hover {
    opacity: 0.75;
  }
}

@keyframes megamenuShow {
  from {
    opacity: 0;
    transform: translate(0, -10px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0px);
  }
}
.mobile-nav {
  position: fixed;
  z-index: 10000;
  top: 20px;
  right: 5%;
  width: 62px;
  height: 62px;
  border-radius: 31px;
  background-color: #FFFFFF;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.15));
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .mobile-nav {
    top: 43px;
    right: 43px;
  }
}
@media screen and (min-width: 1152px) {
  .mobile-nav {
    filter: inherit;
  }
}
.mobile-nav .gnav-btn {
  width: 42px;
  height: 42px;
  border-radius: 21px;
  background: var(--key-gra, linear-gradient(270deg, #7269EA 0%, var(--key-color, #00B3CD) 100%));
}
.mobile-nav .gnav-btn .menu-trigger {
  display: block;
  width: 42px;
  height: 42px;
  padding: 10.5px 10.5px 0 10.5px;
}
.mobile-nav .gnav-btn .menu-trigger span {
  display: block;
  width: 21px;
  height: 2px;
  margin-bottom: 7px;
  background-color: #FFFFFF;
  transition: transform 0.4s;
}
.mobile-nav .gnav-btn .menu-trigger.active span:nth-of-type(1) {
  transform: translateX(0px) translateY(9px) rotate(-45deg);
}
.mobile-nav .gnav-btn .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.mobile-nav .gnav-btn .menu-trigger.active span:nth-of-type(3) {
  transform: translateX(0px) translateY(-9px) rotate(45deg);
}

footer {
  color: #FFFFFF;
  padding: 80px 0;
  position: relative;
}
footer::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg-material-pattern.png") repeat-y top left;
  background-size: 150% auto;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  footer::after {
    background-size: 100% auto;
  }
}
footer::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #083A84;
  z-index: -2;
}
footer .inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1152px) {
  footer .inner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  footer .inner {
    width: 80%;
  }
}
footer .logo {
  padding: 5em 0 0 0;
  margin: 0 0 2em 0;
}
@media screen and (min-width: 768px) {
  footer .logo {
    padding: 0;
    margin: 0 0 3em 0;
  }
}
footer .logo a {
  display: block;
  width: 70%;
  height: auto;
  aspect-ratio: 1/0.18548;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url("../images/risaiku-logo-w.svg") no-repeat center center;
  background-size: cover;
  transition: 0.3s;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  footer .logo a {
    margin: 0;
    width: 248px;
    height: 46px;
    aspect-ratio: inherit;
  }
  footer .logo a:hover {
    opacity: 0.75;
  }
}
@media screen and (min-width: 1152px) {
  footer nav {
    width: calc(100% - 268px);
  }
}
footer .foot-nav {
  padding: 4em 0;
}
@media screen and (min-width: 768px) {
  footer .foot-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  footer .foot-nav::after {
    display: block;
    content: "";
    width: 30%;
  }
}
footer .foot-nav li {
  text-align: left;
  border-top: #00B3CD solid 1px;
  padding: 1.5em 0 0 0;
}
@media screen and (min-width: 768px) {
  footer .foot-nav li {
    width: 30%;
  }
}
footer .foot-nav li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  display: inline-block;
  color: #FFFFFF;
  transition: 0.3s;
  padding: 0 0 1.5em 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  footer .foot-nav li a {
    font-size: 1.7rem;
  }
}
footer .foot-nav li a:hover {
  text-decoration: none;
}
footer .foot-nav li a::before {
  background: #FFFFFF;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 1em;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
footer .foot-nav li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
footer .foot-nav li .cilid-list li {
  border-top: none;
  padding: 0 0 0 1em;
}
footer .foot-nav li .cilid-list li a {
  font-size: 1.5rem;
}
footer .foot-nav li .cilid-list li a::after {
  display: block;
  background: #FFFFFF;
  content: "";
  width: 5px;
  height: 1px;
  position: absolute;
  left: calc((1em - 5px) * -1);
  top: 0.5em;
}
@media screen and (min-width: 768px) {
  footer .foot-nav li .cilid-list li {
    width: 100%;
  }
}
footer .copyright {
  width: 90%;
  margin: 0 auto 3em auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  footer .copyright {
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
  footer .copyright {
    width: 80%;
  }
}

html {
  background: #FFFFFF;
  font-size: 62.5%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

body {
  color: #141617;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-feature-settings: "palt";
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  background-image: linear-gradient(to right, #E5E7E8 1px, transparent 1px);
  background-size: 4rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  body {
    background-size: 8.5rem;
  }
}
@media screen and (min-width: 1152px) {
  body {
    background-size: 13rem;
  }
}

a {
  color: #00B3CD;
  transition: 0.2s;
}
a:hover {
  color: #97C7D4;
  text-decoration: underline;
}

.link-buttom a {
  text-align: left;
  display: block;
  width: 100%;
  height: 53px;
  background-color: #083A84;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 53px;
  border-radius: 26.5px;
  padding-left: 1.5em;
  position: relative;
  transition: 0.2s;
}
.link-buttom a::after {
  display: block;
  content: "";
  position: absolute;
  background: url("../images/arrow.png") no-repeat center center;
  background-size: cover;
  width: 24px;
  height: 24px;
  top: 14.5px;
  right: 1em;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .link-buttom a {
    max-width: 340px;
    font-size: 1.8rem;
  }
  .link-buttom a:hover {
    background-color: #00B3CD;
    text-decoration: none;
  }
  .link-buttom a:hover::after {
    right: 1.3em;
  }
}
@media screen and (min-width: 1280px) {
  .link-buttom a {
    font-size: 26px;
  }
}
.link-buttom.reverse a {
  text-align: center;
  padding: 0 1.5em;
}
.link-buttom.reverse a::after {
  transform: rotate(180deg);
  top: 14.5px;
  right: inherit;
  left: 1em;
}

#page-title {
  padding: 170px 0 70px 0;
}
@media screen and (min-width: 768px) {
  #page-title {
    padding: 190px 0 90px 0;
  }
}
@media screen and (min-width: 1152px) {
  #page-title {
    padding: 213px 0 110px 0;
  }
}
#page-title .inner {
  width: 95%;
  margin: 0 0 0 auto;
  position: relative;
}
#page-title .en-title {
  background: linear-gradient(270deg, #7269EA, #00B3CD);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Barlow", sans-serif;
  font-size: 5.8rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  #page-title .en-title {
    font-size: 9vw;
    text-align: left;
  }
}
@media screen and (min-width: 1152px) {
  #page-title .en-title {
    font-size: 7.4vw;
  }
}
#page-title .en-title.small-title {
  font-size: 5rem;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  #page-title .en-title.small-title {
    font-size: 7vw;
  }
}
@media screen and (min-width: 1152px) {
  #page-title .en-title.small-title {
    font-size: 5.1vw;
  }
}
#page-title h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 6.6vw;
  margin: 0.5em 0 2em 0;
}
@media screen and (min-width: 768px) {
  #page-title h2 {
    font-size: 3vw;
    margin: 0.5em 0 2em 0;
    text-align: left;
  }
}
@media screen and (min-width: 1152px) {
  #page-title h2 {
    font-size: 2vw;
    margin: 0.5em 0 2em 0;
  }
}
#page-title .title-img {
  transition: 0.2s;
  aspect-ratio: 1/0.388;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media screen and (min-width: 768px) {
  #page-title .title-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 54%;
  }
}
@media screen and (min-width: 960px) {
  #page-title .title-img {
    max-height: 210px;
  }
}
@media screen and (min-width: 1152px) {
  #page-title .title-img {
    aspect-ratio: 1/0.388;
    width: 62%;
    max-height: 235px;
  }
}
@media screen and (min-width: 1280px) {
  #page-title .title-img {
    max-height: 280px;
  }
}
#page-title.sysdev-title .title-img {
  background: url("../images/title-img01.jpg") no-repeat center center;
  background-size: cover;
}
#page-title.designproto-title .title-img {
  background: url("../images/title-img02.jpg") no-repeat center center;
  background-size: cover;
}
#page-title.consulting-title .title-img {
  background: url("../images/title-img03.jpg") no-repeat center center;
  background-size: cover;
}
#page-title.partner-title .title-img {
  background: url("../images/title-img04.jpg") no-repeat center center;
  background-size: cover;
}
#page-title.casestudy-title .title-img {
  background: url("../images/title-img05.jpg") no-repeat center center;
  background-size: cover;
}
#page-title.recruit-title .title-img {
  background: url("../images/title-img06.jpg") no-repeat center center;
  background-size: cover;
}
#page-title.contact-title .title-img {
  background: url("../images/title-img07.jpg") no-repeat center center;
  background-size: cover;
}
#page-title.news-title .title-img {
  background: url("../images/title-img08.jpg") no-repeat center center;
  background-size: cover;
}

.float-illust {
  animation: floatY 2s cubic-bezier(0.37, 0, 0.63, 1) infinite alternate;
}

@keyframes floatY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(20px);
  }
}
.single-contents .inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .single-contents .inner {
    width: 80%;
  }
}
@media screen and (min-width: 1152px) {
  .single-contents .inner.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .single-contents .inner.flex .single-contents__vox {
    width: 47%;
    display: flex;
    /* 直下の要素を並列に */
    flex-direction: column;
    /* 直下の要素を縦積みに */
  }
}
@media screen and (min-width: 1152px) and (min-width: 1152px) {
  .single-contents .inner.flex .single-contents__vox .solutions ul li {
    width: inherit;
  }
}
.single-contents__vox {
  text-align: left;
  padding: 0 0 10% 0;
}
.single-contents__vox h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 6.6vw;
  margin: 0 0 1.5em 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .single-contents__vox h3 {
    font-size: 4.3vw;
  }
}
@media screen and (min-width: 1152px) {
  .single-contents__vox h3 {
    font-size: 3.4vw;
  }
}
.single-contents__vox h3::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #43494C;
  width: 100%;
  height: 1px;
  bottom: -0.5em;
  left: 0;
}
@media screen and (min-width: 1152px) {
  .single-contents__vox h3.small {
    font-size: 2.8vw;
  }
}
.single-contents__vox p {
  text-align: left;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 2em 0;
}
@media screen and (min-width: 768px) {
  .single-contents__vox p {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .single-contents__vox p {
    font-size: 1.4vw;
  }
}
.single-contents__vox .problems,
.single-contents__vox .solutions {
  border-radius: 10px;
  margin: 0 0 4em 0;
}
.single-contents__vox .problems h4,
.single-contents__vox .solutions h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  color: #FFFFFF;
  padding: 0.75em 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media screen and (min-width: 1280px) {
  .single-contents__vox .problems h4,
  .single-contents__vox .solutions h4 {
    font-size: 1.6vw;
  }
}
.single-contents__vox .problems .vox,
.single-contents__vox .solutions .vox {
  padding: 2em 3em 1.25em 3em;
}
@media screen and (min-width: 768px) {
  .single-contents__vox .problems .vox,
  .single-contents__vox .solutions .vox {
    padding: 2em 3em 1.25em 3em;
  }
}
@media screen and (min-width: 1152px) {
  .single-contents__vox .problems .vox,
  .single-contents__vox .solutions .vox {
    padding: 3em 4em 2.25em 4em;
  }
}
.single-contents__vox .problems {
  border: #00B3CD solid 1px;
  background-color: #FFFFFF;
}
.single-contents__vox .problems h4 {
  background-color: #00B3CD;
}
.single-contents__vox .problems ul {
  margin: 0 0 0 1.5em;
  list-style-type: disc;
}
.single-contents__vox .problems ul li {
  font-weight: 600;
  line-height: 1.5;
  font-size: 1.7rem;
  margin: 0 0 0.75em 0;
}
@media screen and (min-width: 1280px) {
  .single-contents__vox .problems ul li {
    font-size: 1.8vw;
  }
}
.single-contents__vox .solutions {
  background-color: #DDEDFF;
}
.single-contents__vox .solutions h4 {
  background-color: #083A84;
}
@media screen and (min-width: 1152px) {
  .single-contents__vox .solutions ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.single-contents__vox .solutions ul li {
  color: #083A84;
  text-align: left;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 1em 0;
}
@media screen and (min-width: 768px) {
  .single-contents__vox .solutions ul li {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1152px) {
  .single-contents__vox .solutions ul li {
    width: 48%;
  }
}
@media screen and (min-width: 1280px) {
  .single-contents__vox .solutions ul li {
    font-size: 1.4vw;
  }
}
.single-contents__vox .solutions ul li h5 {
  font-weight: 600;
  line-height: 1.5;
  font-size: 1.7rem;
  position: relative;
  margin: 0 0 0.2em 0;
}
@media screen and (min-width: 1280px) {
  .single-contents__vox .solutions ul li h5 {
    font-size: 1.8vw;
  }
}
.single-contents__vox .solutions ul li h5::before {
  content: "・";
}

.pagination {
  margin: 7% 0 15px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  font-size: 1.4rem;
}
.pagination a {
  color: #083A84;
}
.pagination ul {
  width: 100%;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
.pagination ul li {
  margin: 5px;
}

.page-numbers {
  border: #083A84 1px solid;
  border-radius: 5px;
  padding: 5px 10px;
  text-decoration: none;
  color: #083A84;
}

.page-numbers:hover {
  background-color: #FFFFFF;
}

.page-numbers.current {
  background-color: #FFFFFF;
  color: #083A84;
}

.pagination-total {
  text-align: center;
  margin: 0 0 5% 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #083A84;
  font-size: 1.4rem;
}

.post-contents {
  font-family: "Noto Sans JP", sans-serif;
}
.post-contents img {
  max-width: 100%;
  height: auto;
  margin: 0 0 1em 0;
}
.post-contents h1,
.post-contents h2,
.post-contents h3,
.post-contents h4,
.post-contents h5,
.post-contents h6 {
  font-weight: 600;
}
.post-contents h1 {
  font-size: 2.6rem;
  line-height: 1.4;
  margin: 0 0 1.5em 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .post-contents h1 {
    font-size: 3.4rem;
  }
}
.post-contents h1::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #43494C;
  width: 100%;
  height: 1px;
  bottom: -0.5em;
  left: 0;
}
.post-contents h2 {
  font-size: 2.4rem;
  line-height: 1.4;
  margin: 0 0 1.5em 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .post-contents h2 {
    font-size: 3.2rem;
  }
}
.post-contents h2::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #43494C;
  width: 100%;
  height: 1px;
  bottom: -0.5em;
  left: 0;
}
.post-contents h3 {
  font-size: 2.2rem;
  line-height: 1.4;
  margin: 0 0 1.5em 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .post-contents h3 {
    font-size: 2.8rem;
  }
}
.post-contents h3::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #43494C;
  width: 100%;
  height: 1px;
  bottom: -0.5em;
  left: 0;
}
.post-contents h4 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 0 0 1.5em 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .post-contents h4 {
    font-size: 2.6rem;
  }
}
.post-contents h4::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #43494C;
  width: 100%;
  height: 1px;
  bottom: -0.5em;
  left: 0;
}
.post-contents h4.title {
  color: #083A84;
}
.post-contents h5 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 1em 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .post-contents h5 {
    font-size: 2.1rem;
  }
}
.post-contents h6 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 1em 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .post-contents h6 {
    font-size: 2rem;
  }
}
.post-contents p {
  text-align: left;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 1em 0;
}
@media screen and (min-width: 768px) {
  .post-contents p {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .post-contents p {
    font-size: 1.4vw;
  }
}
.post-contents p strong {
  font-weight: 600;
}
.post-contents em {
  font-style: italic;
}
.post-contents blockquote {
  color: #43494C;
  margin: 2em;
  padding: 4em 4em 3em 4em !important;
  position: relative;
  background-color: #fafafa;
  border: #CCD0D1 solid 1px;
  border-radius: 5px;
}
.post-contents blockquote::before {
  color: #ddd;
  content: "“";
  font-family: Georgia, serif;
  font-size: 84px;
  left: 0.1em;
  line-height: 1;
  position: absolute;
  top: 0.1em;
}
.post-contents blockquote::after {
  color: #ddd;
  content: "“";
  font-family: Georgia, serif;
  font-size: 84px;
  right: 0.1em;
  line-height: 1;
  position: absolute;
  bottom: -0.1em;
}
.post-contents ul {
  margin: 0 0 1em 1.5em;
  text-align: left;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .post-contents ul {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .post-contents ul {
    font-size: 1.4vw;
  }
}
.post-contents ul li {
  position: relative;
}
.post-contents ul li::before {
  display: block;
  content: "";
  position: absolute;
  background-color: rgba(20, 22, 23, 0.4);
  width: 5px;
  height: 5px;
  top: 0.8em;
  left: -1em;
  border-radius: 5px;
}
.post-contents ol {
  margin: 0 0 1em 1.5em;
  list-style-type: decimal;
  text-align: left;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .post-contents ol {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .post-contents ol {
    font-size: 1.4vw;
  }
}
.post-contents dl {
  margin: 0 0 1em 0;
  text-align: left;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 1em 0;
}
@media screen and (min-width: 768px) {
  .post-contents dl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .post-contents dl {
    font-size: 1.4vw;
  }
}
.post-contents table {
  width: 100%;
  border-collapse: collapse;
  border: #CCD0D1 solid 1px;
}
.post-contents table tr th {
  background-color: #E6F6F8;
  vertical-align: middle;
  border: #CCD0D1 solid 1px;
  padding: 1em 2em 0.5em 2em;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 1em 0;
}
@media screen and (min-width: 768px) {
  .post-contents table tr th {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .post-contents table tr th {
    font-size: 1.4vw;
  }
}
.post-contents table tr td {
  vertical-align: middle;
  border: #CCD0D1 solid 1px;
  padding: 1em 2em 0.5em 2em;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 1em 0;
}
@media screen and (min-width: 768px) {
  .post-contents table tr td {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .post-contents table tr td {
    font-size: 1.4vw;
  }
}

#view-1st {
  background: url("../images/view-1st-bg.png") repeat-y top center;
  background-size: cover;
  width: 100vw;
  aspect-ratio: 0.5543/1;
  position: relative;
}
@media screen and (min-width: 768px) {
  #view-1st {
    aspect-ratio: 1/0.92;
    border-radius: 36px;
    border: #FFFFFF 15px solid;
  }
}
@media screen and (min-width: 960px) {
  #view-1st {
    aspect-ratio: 1/0.65;
    min-height: 950px;
  }
}
@media screen and (min-width: 1280px) {
  #view-1st {
    min-height: inherit;
  }
}
#view-1st .copy-vox {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -22%);
}
@media screen and (min-width: 768px) {
  #view-1st .copy-vox {
    display: inline;
    position: static;
    transition: none;
  }
}
#view-1st .main-copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 7.25vw;
  line-height: 1;
  color: #FFFFFF;
  text-align: left;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  transition: 0.1s;
}
@media screen and (min-width: 768px) {
  #view-1st .main-copy {
    font-size: 4.57vw;
    position: absolute;
    top: calc(96px + 5%);
    left: 42%;
    z-index: 1;
  }
}
@media screen and (min-width: 960px) {
  #view-1st .main-copy {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 1280px) {
  #view-1st .main-copy {
    top: calc(96px + 10%);
    font-size: 4vw;
    left: 36vw;
  }
}
#view-1st .main-copy div {
  width: auto;
  display: inline-block;
  padding: 7px 10px;
  margin: 0 0 0.2em 0;
  position: relative;
  white-space: nowrap;
}
#view-1st .main-copy div::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--key-gra, linear-gradient(270deg, #7269EA 0%, var(--key-color, #00B3CD) 100%));
  transform: scaleX(0);
}
#view-1st .main-copy div:nth-child(2) {
  margin-left: 1em;
}
#view-1st .main-copy div span {
  opacity: 0;
}
#view-1st .sub-copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 5.08vw;
  line-height: 150%;
  color: #083A84;
  text-align: left;
  white-space: nowrap;
  transition: 0.1s;
}
@media screen and (min-width: 768px) {
  #view-1st .sub-copy {
    font-size: 3.43vw;
    position: absolute;
    top: 68%;
    left: 5%;
  }
}
@media screen and (min-width: 960px) {
  #view-1st .sub-copy {
    font-size: 2.8rem;
    top: initial;
    bottom: 5%;
  }
}
@media screen and (min-width: 1280px) {
  #view-1st .sub-copy {
    font-size: 2.89vw;
  }
}
#view-1st .illust_1 {
  width: 59%;
  position: absolute;
  top: calc(90px + 2%);
  left: 5%;
  position: relative;
  z-index: 1;
  transition: 0.1s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  #view-1st .illust_1 {
    width: 47%;
    top: calc(96px + 5%);
    left: 2.5%;
  }
}
@media screen and (min-width: 1280px) {
  #view-1st .illust_1 {
    top: calc(96px + 10%);
    width: 40%;
  }
}
#view-1st .illust_1 img {
  width: 100%;
  height: auto;
}
#view-1st .illust_1::after {
  display: block;
  content: "";
  position: absolute;
  background: url("../images/e-copy2.svg") no-repeat center center;
  background-size: cover;
  width: 65%;
  aspect-ratio: 1/0.350172;
  transform: rotate(5.72deg);
  transform-origin: center;
  top: 45%;
  right: -55%;
  transition: 0.1s;
}
@media screen and (min-width: 768px) {
  #view-1st .illust_1::after {
    width: 80%;
    right: -68%;
  }
}
@media screen and (min-width: 1152px) {
  #view-1st .illust_1::after {
    top: 28%;
  }
}
@media screen and (min-width: 1152px) {
  #view-1st .illust_1::after {
    top: 35%;
  }
}
#view-1st .illust_2 {
  width: 54%;
  position: absolute;
  right: 5%;
  bottom: 5%;
  transition: 0.1s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  #view-1st .illust_2 {
    width: 43%;
    right: 2.5%;
  }
}
@media screen and (min-width: 1280px) {
  #view-1st .illust_2 {
    width: 37%;
  }
}
#view-1st .illust_2 img {
  width: 100%;
  height: auto;
}

.illust_motion1 {
  animation: fuwafuwa 4s ease-in 0s infinite alternate;
}

.illust_motion2 {
  animation: fuwafuwa 4s ease-in 1s infinite alternate;
}

@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.loading-done #view-1st .main-copy div:nth-child(1)::after {
  animation-name: kf-catch-copy-base;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.loading-done #view-1st .main-copy div:nth-child(2)::after {
  animation-name: kf-catch-copy-base;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.loading-done #view-1st .main-copy div span {
  animation-name: kf-catch-copy;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes kf-catch-copy-base {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: left;
    transform: scaleX(1);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}
@keyframes kf-catch-copy {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#prologue {
  padding: 15% 0;
}
#prologue .inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  #prologue .inner {
    width: 80%;
  }
}
#prologue .problem {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  text-align: left;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  transition: 0.1s;
}
@media screen and (min-width: 768px) {
  #prologue .problem {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 960px) {
  #prologue .problem {
    font-size: 2.5vw;
  }
}
#prologue .problem div {
  width: auto;
  display: inline-block;
  padding: 7px 10px;
  margin: 0 0 0.3em 0;
  position: relative;
  white-space: nowrap;
}
#prologue .problem div::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00B3CD;
  transform: scaleX(0);
}
#prologue .problem div span {
  opacity: 0;
}
#prologue .problem div span br {
  display: block;
}
@media screen and (min-width: 768px) {
  #prologue .problem div span br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  #prologue .prologue-vox {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#prologue .prologue-vox .txt {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  #prologue .prologue-vox .txt {
    width: 49%;
  }
}
#prologue .prologue-vox .txt h3 {
  font-weight: 600;
  font-size: 7.25vw;
  line-height: 1.3;
  color: #083A84;
  margin: 1em auto;
}
@media screen and (min-width: 768px) {
  #prologue .prologue-vox .txt h3 {
    font-size: 4.57vw;
    text-align: left;
    margin: 1em 0;
  }
}
@media screen and (min-width: 960px) {
  #prologue .prologue-vox .txt h3 {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 1280px) {
  #prologue .prologue-vox .txt h3 {
    font-size: 4vw;
  }
}
#prologue .prologue-vox .txt p {
  text-align: left;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  #prologue .prologue-vox .txt p {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  #prologue .prologue-vox .txt p {
    font-size: 1.7vw;
  }
}
#prologue .illust_3 {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  #prologue .illust_3 {
    margin-top: 0;
    width: 49%;
  }
}
#prologue .illust_3 img {
  width: 100%;
  height: auto;
}

#prologue .problem.active div:nth-child(1)::after {
  animation-name: kf-problem-copy-base;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
#prologue .problem.active div:nth-child(2)::after {
  animation-name: kf-problem-copy-base;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
#prologue .problem.active div span {
  animation-name: kf-problem-copy;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes kf-problem-copy-base {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(1);
  }
}
@keyframes kf-problem-copy {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#news {
  padding: 0 0 15% 0;
  position: relative;
  overflow: hidden;
}
#news .inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #news .inner {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1280px) {
  #news .inner {
    width: 80%;
  }
}
#news .title-vox {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #news .title-vox {
    width: 30%;
  }
}
@media screen and (min-width: 1152px) {
  #news .title-vox {
    width: 25%;
  }
}
#news .en-title {
  display: inline-block;
  background: linear-gradient(270deg, #7269EA, #00B3CD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Barlow", sans-serif;
  font-size: 5.8rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  #news .en-title {
    font-size: 9vw;
  }
}
@media screen and (min-width: 1152px) {
  #news .en-title {
    font-size: 7.4vw;
  }
}
#news h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 6.6vw;
  margin: 0.5em 0 1em 0;
}
@media screen and (min-width: 768px) {
  #news h3 {
    font-size: 3vw;
    margin: 0.5em 0 2em 0;
  }
}
@media screen and (min-width: 1152px) {
  #news h3 {
    font-size: 2vw;
    margin: 0.5em 0 2em 0;
  }
}
#news .news-list {
  background-color: #FFFFFF;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.15));
  padding: 1em 2em 2em 2em;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  #news .news-list {
    width: 68%;
    padding: 1.5em 2.5em 2.5em 2.5em;
  }
}
@media screen and (min-width: 1152px) {
  #news .news-list {
    width: 74%;
    padding: 2em 4em 3em 4em;
  }
}
#news .news-list li {
  position: relative;
  text-align: left;
  padding: 1em 0 2em 0;
}
#news .news-list li::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  border-bottom: #CCD0D1 dotted 1px;
  position: absolute;
  left: 0;
  bottom: 1em;
}
#news .news-list li a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  color: #141617;
}
#news .news-list li a:hover {
  text-decoration: none;
  opacity: 0.5;
}
#news .news-list__date {
  width: 6em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  color: #43494C;
  margin: 0.3em 0 0.3em 0;
}
#news .news-list__icon {
  width: 7em;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
  color: #FFFFFF;
  background-color: #FF8431;
  padding: 0.3em 0;
  margin: 0.3em 0;
  border-radius: 1.6em;
}
#news .news-list__title {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0.3em 0 0.3em 0;
}
@media screen and (min-width: 1152px) {
  #news .news-list__title {
    width: calc(100% - 14em);
    margin: 0.3em 0 0.3em 1em;
  }
}
#news .link-buttom {
  width: 90%;
  margin: 20px auto 0 auto;
}
@media screen and (min-width: 768px) {
  #news .link-buttom {
    max-width: 300px;
    margin: 40px auto 0 5%;
  }
}
@media screen and (min-width: 960px) {
  #news .link-buttom {
    max-width: 340px;
  }
}
@media screen and (min-width: 1280px) {
  #news .link-buttom {
    margin: 40px auto 0 10%;
  }
}

#service-info {
  padding: 15% 0 0 0;
  background-color: #E6F6F8;
  position: relative;
  overflow: hidden;
}
#service-info .inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #service-info .inner {
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
  #service-info .inner {
    width: 80%;
  }
}
#service-info h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 6.6vw;
  margin: 4em 0 2em 0;
}
@media screen and (min-width: 768px) {
  #service-info h3 {
    font-size: 4.3vw;
    margin: 3.5em 0 2em 0;
  }
}
@media screen and (min-width: 1152px) {
  #service-info h3 {
    font-size: 3.4vw;
    margin: 3em 0 2em 0;
  }
}
#service-info .marquee {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
#service-info .marquee__track {
  position: absolute;
  top: 8em;
  left: 0;
  display: flex;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  #service-info .marquee__track {
    top: 11em;
  }
}
@media screen and (min-width: 1152px) {
  #service-info .marquee__track {
    top: 16em;
  }
}
#service-info .marquee__content {
  font-size: 10.4rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  padding-right: 1vw;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  #service-info .marquee__content {
    font-size: 20vw;
  }
}
@media screen and (min-width: 1152px) {
  #service-info .marquee__content {
    font-size: 15.6vw;
  }
}
#service-info .service-detail {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 0 25% 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  #service-info .service-detail {
    margin: 0 0 20% 0;
  }
}
@media screen and (min-width: 1152px) {
  #service-info .service-detail {
    margin: 0 0 15% 0;
  }
}
#service-info .service-detail h4 {
  font-weight: 600;
  line-height: 1;
  font-size: 2rem;
  color: #FFFFFF;
  padding: 0.8em 0 0.8em 3em;
  margin: 0 0 1em 0;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #service-info .service-detail h4 {
    width: 60%;
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1280px) {
  #service-info .service-detail h4 {
    font-size: 1.9vw;
  }
}
#service-info .service-detail h4::after {
  display: block;
  content: "";
  position: absolute;
  background: var(--key-gra, linear-gradient(270deg, #7269EA 0%, var(--key-color, #00B3CD) 100%));
  border-radius: 5px;
  width: 100%;
  height: 2.6em;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scaleX(0);
}
@media screen and (min-width: 768px) {
  #service-info .service-detail h4::after {
    width: 135%;
  }
}
#service-info .service-detail p {
  text-align: left;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 2em 0;
}
@media screen and (min-width: 768px) {
  #service-info .service-detail p {
    width: 60%;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  #service-info .service-detail p {
    font-size: 1.4vw;
  }
}
#service-info .service-detail .img {
  margin: 4em 0;
}
@media screen and (min-width: 768px) {
  #service-info .service-detail .img {
    position: absolute;
    right: 0;
    top: -10%;
    width: 36%;
    margin: 0;
  }
}
#service-info .service-detail .img img {
  width: 100%;
  height: auto;
}
#service-info .service-detail .service-list {
  background-color: #FFFFFF;
  border-radius: 7px;
  padding: 1.5em 3em;
  margin: 0 0 3em 0;
}
@media screen and (min-width: 768px) {
  #service-info .service-detail .service-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: inherit;
    padding: 0;
    margin: 0 0 1em 0;
  }
}
@media screen and (min-width: 960px) {
  #service-info .service-detail .service-list {
    width: 60%;
  }
}
#service-info .service-detail .service-list li {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
  color: #083A84;
  text-align: left;
  list-style-type: disc;
  margin: 0 0 0 1.5em;
}
@media screen and (min-width: 768px) {
  #service-info .service-detail .service-list li {
    width: 48%;
    padding: 1em;
    margin: 0 0 1em 0;
    background-color: #FFFFFF;
    border-radius: 7px;
    font-size: 1.8rem;
    line-height: 1;
    text-align: center;
    list-style-type: none;
  }
}
@media screen and (min-width: 1280px) {
  #service-info .service-detail .service-list li {
    font-size: 1.4vw;
  }
}
@media screen and (min-width: 960px) {
  #service-info .service-detail .link-buttom {
    margin: 0 0 0 auto;
    width: 60%;
  }
}
#service-info .service-detail .link-buttom a {
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px) {
  #service-info .service-detail:nth-child(even) h4 {
    margin: 0 0 1em auto;
  }
  #service-info .service-detail:nth-child(even) h4::after {
    left: inherit;
    right: 0;
  }
  #service-info .service-detail:nth-child(even) p {
    margin: 0 0 2em auto;
  }
  #service-info .service-detail:nth-child(even) .img {
    right: inherit;
    left: 0;
  }
  #service-info .service-detail:nth-child(even) .service-list {
    margin: 0 0 1em auto;
  }
}
#service-info .service-detail.service1 h4::before {
  display: block;
  content: "";
  position: absolute;
  background: url("../images/icon-service1.svg") no-repeat center center;
  background-size: cover;
  width: 32px;
  height: 32px;
  top: calc((2.6em - 32px) / 2);
  left: 3%;
}
@media screen and (min-width: 768px) {
  #service-info .service-detail.service1 h4::before {
    width: 40px;
    height: 40px;
    top: calc((2.6em - 40px) / 2);
  }
}
#service-info .service-detail.service2 h4::before {
  display: block;
  content: "";
  position: absolute;
  background: url("../images/icon-service2.svg") no-repeat center center;
  background-size: cover;
  width: 32px;
  height: 32px;
  top: calc((2.6em - 32px) / 2);
  left: 3%;
}
@media screen and (min-width: 768px) {
  #service-info .service-detail.service2 h4::before {
    width: 40px;
    height: 40px;
    top: calc((2.6em - 40px) / 2);
  }
}
@media screen and (min-width: 960px) {
  #service-info .service-detail.service2 .link-buttom {
    margin: 0 auto 0 0;
  }
}
#service-info .service-detail.service3 h4::before {
  display: block;
  content: "";
  position: absolute;
  background: url("../images/icon-service3.svg") no-repeat center center;
  background-size: cover;
  width: 32px;
  height: 32px;
  top: calc((2.6em - 32px) / 2);
  left: 3%;
}
@media screen and (min-width: 768px) {
  #service-info .service-detail.service3 h4::before {
    width: 40px;
    height: 40px;
    top: calc((2.6em - 40px) / 2);
  }
}

#service-info .service-detail h4.active::after {
  animation-name: kf-service-title-base;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes kf-service-title-base {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(1);
  }
}
#case-study {
  padding: 15% 0;
  position: relative;
  overflow: hidden;
}
#case-study .inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #case-study .inner {
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
  #case-study .inner {
    width: 80%;
  }
}
#case-study .en-title {
  display: inline-block;
  background: linear-gradient(270deg, #7269EA, #00B3CD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Barlow", sans-serif;
  font-size: 5.8rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  #case-study .en-title {
    font-size: 9vw;
  }
}
@media screen and (min-width: 1152px) {
  #case-study .en-title {
    font-size: 7.4vw;
  }
}
#case-study h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 6.6vw;
  margin: 4em 0 2em 0;
}
@media screen and (min-width: 768px) {
  #case-study h3 {
    font-size: 3vw;
    margin: 0.5em 0 2em 0;
  }
}
@media screen and (min-width: 1152px) {
  #case-study h3 {
    font-size: 2vw;
    margin: 0.5em 0 2em 0;
  }
}
@media screen and (min-width: 1152px) {
  #case-study .case-study-list {
    width: 105%;
  }
}
@media screen and (min-width: 1280px) {
  #case-study .case-study-list {
    width: 110%;
  }
}
#case-study .case-study-list .swiper-wrapper .img {
  width: 100%;
  aspect-ratio: 1/0.66;
  margin: 0 0 1em 0;
}
#case-study .case-study-list .swiper-wrapper .title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.65;
  text-align: left;
}
#case-study .case-study-list .swiper-wrapper p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2;
  margin: 1em 0;
  text-align: left;
}
#case-study .case-study-list .swiper-wrapper p.right {
  text-align: right;
}
#case-study .case-study-list .swiper-wrapper .tag-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 1em 0 0 0;
}
#case-study .case-study-list .swiper-wrapper .tag-list li {
  border: #43494C solid 1px;
  background-color: #FFFFFF;
  color: #43494C;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 1.3rem;
  padding: 0.5em 1em;
  margin: 0 1em 0.5em 0;
}
#case-study .case-study-list .swiper-wrapper .swiper-slide {
  padding: 40px 0 20px 0;
  box-sizing: border-box;
  width: 100%;
  transition: transform 0.5s ease; /* アニメーションをなめらかに */
}
@media screen and (min-width: 768px) {
  #case-study .case-study-list .swiper-wrapper .swiper-slide {
    width: 45%;
  }
}
@media screen and (min-width: 1152px) {
  #case-study .case-study-list .swiper-wrapper .swiper-slide {
    width: 30%;
  }
}
#case-study .case-study-list .swiper-wrapper .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
  color: #141617;
  position: relative;
}
#case-study .case-study-list .swiper-wrapper .swiper-slide a::after {
  display: block;
  content: "";
  background-color: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.2s;
}
#case-study .case-study-list .swiper-wrapper .swiper-slide a:hover {
  text-decoration: none;
}
#case-study .case-study-list .swiper-wrapper .swiper-slide a:hover::after {
  opacity: 0.35;
}
#case-study .case-study-list .pagination-vox {
  width: 100%;
  height: 83px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #case-study .case-study-list .pagination-vox {
    width: 350px;
    height: 53px;
    margin: 0 5% 0 auto;
  }
}
#case-study .case-study-list .swiper-pagination {
  width: 198px;
  bottom: 50%;
}
@media screen and (min-width: 768px) {
  #case-study .case-study-list .swiper-pagination {
    bottom: calc(50% - 9px);
  }
}
#case-study .case-study-list .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  margin: 0 7.5px;
}
#case-study .case-study-list .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #083A84;
}
#case-study .case-study-list .swiper-button-next, #case-study .case-study-list .swiper-button-prev {
  position: absolute;
  top: 0;
  width: 53px;
  height: 53px;
  margin-top: inherit;
  z-index: 10;
  cursor: pointer;
  display: block;
  color: inherit;
  background: url("../images/swiper-button.png") no-repeat;
}
#case-study .case-study-list .swiper-button-next::after, #case-study .case-study-list .swiper-button-prev::after {
  display: none;
}
#case-study .case-study-list .swiper-button-next {
  right: 0;
}
#case-study .case-study-list .swiper-button-prev {
  left: inherit;
  right: 71px;
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  #case-study .case-study-list .link-buttom {
    max-width: 300px;
    margin: -5em 0 0 0;
  }
}
@media screen and (min-width: 960px) {
  #case-study .case-study-list .link-buttom {
    max-width: 340px;
  }
}

#message {
  padding: 0 0 15% 0;
}
#message .inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  #message .inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1280px) {
  #message .inner {
    width: 80%;
  }
}
#message .message-txt {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 960px) {
  #message .message-txt {
    width: 49%;
  }
}
#message .message-txt .message-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1.3;
  color: #083A84;
  text-align: left;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  transition: 0.1s;
  margin: 0 0 2em 0;
}
@media screen and (min-width: 768px) {
  #message .message-txt .message-title {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 960px) {
  #message .message-txt .message-title {
    font-size: 2.5vw;
  }
}
#message .message-txt .message-title div {
  width: auto;
  display: inline-block;
  margin: 0 0 0.3em 0;
  white-space: nowrap;
  opacity: 0;
}
#message .message-txt .message-title div:nth-child(1) {
  animation-name: kf-message-copy-base;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
#message .message-txt .message-title div:nth-child(2) {
  animation-name: kf-message-copy-base;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
#message .message-txt p {
  text-align: left;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
  margin: 0 0 1em 0;
}
@media screen and (min-width: 768px) {
  #message .message-txt p {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  #message .message-txt p {
    font-size: 1.7vw;
  }
}
@media screen and (min-width: 768px) {
  #message .message-img {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) {
  #message .message-img {
    margin: 0;
    width: 49%;
  }
}
#message .message-img img {
  width: 100%;
  height: auto;
}

@keyframes kf-message-copy-base {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
#mission {
  padding: 12% 0;
  background-color: #E6F6F8;
  position: relative;
  overflow: hidden;
}
#mission .inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #mission .inner {
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
  #mission .inner {
    width: 80%;
  }
}
#mission h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 6.6vw;
  margin: 4em 0 2em 0;
}
@media screen and (min-width: 768px) {
  #mission h3 {
    font-size: 4.3vw;
    margin: 3.5em 0 2em 0;
  }
}
@media screen and (min-width: 1152px) {
  #mission h3 {
    font-size: 3.4vw;
    margin: 3em 0 2em 0;
  }
}
#mission .marquee {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
#mission .marquee__track {
  position: absolute;
  top: 6em;
  left: 0;
  display: flex;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  #mission .marquee__track {
    top: 9em;
  }
}
@media screen and (min-width: 1152px) {
  #mission .marquee__track {
    top: 12em;
  }
}
#mission .marquee__content {
  font-size: 10.4rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  padding-right: 1vw;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  #mission .marquee__content {
    font-size: 20vw;
  }
}
@media screen and (min-width: 1152px) {
  #mission .marquee__content {
    font-size: 15.6vw;
  }
}
@media screen and (min-width: 768px) {
  #mission .mission-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#mission .mission-list li {
  background-color: #FFFFFF;
  color: #083A84;
  border-radius: 10px;
  font-weight: 600;
  line-height: 1.5;
  font-size: 1.9rem;
  padding: 0.8em 1em 0.8em 3em;
  margin: 0 0 1em 0;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #mission .mission-list li {
    width: 48%;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1280px) {
  #mission .mission-list li {
    font-size: 1.7vw;
  }
}
#mission .mission-list li::after {
  display: block;
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icon-mission.png") no-repeat center center;
  background-size: cover;
  top: 1em;
  left: 1em;
}
@media screen and (min-width: 768px) {
  #mission .mission-list li::after {
    width: 28px;
    height: 28px;
  }
}
@media screen and (min-width: 1152px) {
  #mission .mission-list li::after {
    width: 32px;
    height: 32px;
  }
}

#outline {
  padding: 15% 0;
  overflow: hidden;
}
#outline .inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #outline .inner {
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
  #outline .inner {
    width: 80%;
  }
}
#outline .en-title {
  display: inline-block;
  background: linear-gradient(270deg, #7269EA, #00B3CD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Barlow", sans-serif;
  font-size: 5.8rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  #outline .en-title {
    font-size: 9vw;
  }
}
@media screen and (min-width: 1152px) {
  #outline .en-title {
    font-size: 7.4vw;
  }
}
#outline h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 6.6vw;
  margin: 4em 0 2em 0;
}
@media screen and (min-width: 768px) {
  #outline h3 {
    font-size: 3vw;
    margin: 0.5em 0 2em 0;
  }
}
@media screen and (min-width: 1152px) {
  #outline h3 {
    font-size: 2vw;
    margin: 0.5em 0 2em 0;
  }
}
#outline .company-data {
  width: 100%;
  border-collapse: collapse;
}
#outline .company-data th, #outline .company-data td, #outline .company-data dt, #outline .company-data dd, #outline .company-data li {
  text-align: left;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  #outline .company-data th, #outline .company-data td, #outline .company-data dt, #outline .company-data dd, #outline .company-data li {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  #outline .company-data th, #outline .company-data td, #outline .company-data dt, #outline .company-data dd, #outline .company-data li {
    font-size: 1.4vw;
  }
}
#outline .company-data th {
  display: block;
  width: 100%;
  background-color: #43494C;
  color: #FFFFFF;
  padding: 0.3em 1em 0.2em 1em;
}
@media screen and (min-width: 768px) {
  #outline .company-data th {
    display: table-cell;
    width: 30%;
    background-color: inherit;
    color: inherit;
    border-bottom: #43494C solid 1px;
    padding: 3em 0em 3em 0em;
  }
}
@media screen and (min-width: 1152px) {
  #outline .company-data th {
    width: 20%;
  }
}
#outline .company-data td {
  display: block;
  width: 100%;
  padding: 0.3em 1em 0.75em 1em;
  border-bottom: #43494C solid 1px;
}
@media screen and (min-width: 768px) {
  #outline .company-data td {
    display: table-cell;
    width: 70%;
    padding: 3em 0em 3em 0em;
  }
}
@media screen and (min-width: 1152px) {
  #outline .company-data td {
    width: 80%;
  }
}
#outline .company-data dl {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #outline .company-data dl {
    display: flex;
    flex-wrap: wrap;
  }
}
#outline .company-data dl dt {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  #outline .company-data dl dt {
    font-weight: 500;
    width: 8em;
  }
}
@media screen and (min-width: 768px) {
  #outline .company-data dl dd {
    width: calc(100% - 9em);
  }
}
#outline .company-data ul {
  margin: 0 0 0 1.5em;
  list-style-type: disc;
}

#sysdev01 .single-contents__title, #sysdev02 .single-contents__title, #sysdev03 .single-contents__title, #sysdev04 .single-contents__title, #sysdev05 .single-contents__title {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
#sysdev01 .single-contents__title .txt, #sysdev02 .single-contents__title .txt, #sysdev03 .single-contents__title .txt, #sysdev04 .single-contents__title .txt, #sysdev05 .single-contents__title .txt {
  width: 70%;
}
@media screen and (min-width: 768px) {
  #sysdev01 .single-contents__title .txt, #sysdev02 .single-contents__title .txt, #sysdev03 .single-contents__title .txt, #sysdev04 .single-contents__title .txt, #sysdev05 .single-contents__title .txt {
    width: 80%;
  }
}
#sysdev01 .single-contents__title .icon, #sysdev02 .single-contents__title .icon, #sysdev03 .single-contents__title .icon, #sysdev04 .single-contents__title .icon, #sysdev05 .single-contents__title .icon {
  width: 28%;
}
@media screen and (min-width: 768px) {
  #sysdev01 .single-contents__title .icon, #sysdev02 .single-contents__title .icon, #sysdev03 .single-contents__title .icon, #sysdev04 .single-contents__title .icon, #sysdev05 .single-contents__title .icon {
    width: 18%;
  }
}
#sysdev01 .single-contents__title .icon img, #sysdev02 .single-contents__title .icon img, #sysdev03 .single-contents__title .icon img, #sysdev04 .single-contents__title .icon img, #sysdev05 .single-contents__title .icon img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1152px) {
  #designproto01.single-contents__vox .solutions ul, #designproto02.single-contents__vox .solutions ul, #designproto03.single-contents__vox .solutions ul, #designproto04.single-contents__vox .solutions ul {
    width: 100%;
    display: block;
  }
}
@media screen and (min-width: 1152px) {
  #designproto01.single-contents__vox .solutions ul li, #designproto02.single-contents__vox .solutions ul li, #designproto03.single-contents__vox .solutions ul li, #designproto04.single-contents__vox .solutions ul li {
    width: 100%;
  }
}
#designproto01 .single-contents__title, #designproto02 .single-contents__title, #designproto03 .single-contents__title, #designproto04 .single-contents__title {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 1280px) {
  #designproto01 .single-contents__title, #designproto02 .single-contents__title, #designproto03 .single-contents__title, #designproto04 .single-contents__title {
    margin-bottom: 3em;
  }
}
#designproto01 .single-contents__title .txt, #designproto02 .single-contents__title .txt, #designproto03 .single-contents__title .txt, #designproto04 .single-contents__title .txt {
  width: 70%;
}
@media screen and (min-width: 768px) {
  #designproto01 .single-contents__title .txt, #designproto02 .single-contents__title .txt, #designproto03 .single-contents__title .txt, #designproto04 .single-contents__title .txt {
    width: 80%;
  }
}
@media screen and (min-width: 1152px) {
  #designproto01 .single-contents__title .txt, #designproto02 .single-contents__title .txt, #designproto03 .single-contents__title .txt, #designproto04 .single-contents__title .txt {
    min-height: 22em;
  }
}
#designproto01 .single-contents__title .icon, #designproto02 .single-contents__title .icon, #designproto03 .single-contents__title .icon, #designproto04 .single-contents__title .icon {
  width: 28%;
}
@media screen and (min-width: 768px) {
  #designproto01 .single-contents__title .icon, #designproto02 .single-contents__title .icon, #designproto03 .single-contents__title .icon, #designproto04 .single-contents__title .icon {
    width: 18%;
  }
}
#designproto01 .single-contents__title .icon img, #designproto02 .single-contents__title .icon img, #designproto03 .single-contents__title .icon img, #designproto04 .single-contents__title .icon img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1152px) {
  #consulting01.single-contents__vox .solutions ul, #consulting02.single-contents__vox .solutions ul, #consulting03.single-contents__vox .solutions ul, #consulting04.single-contents__vox .solutions ul {
    width: 100%;
    display: block;
  }
}
@media screen and (min-width: 1152px) {
  #consulting01.single-contents__vox .solutions ul li, #consulting02.single-contents__vox .solutions ul li, #consulting03.single-contents__vox .solutions ul li, #consulting04.single-contents__vox .solutions ul li {
    width: 100%;
  }
}

#partner-message {
  padding: 0 0 5% 0;
}
#partner-message .inner {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  #partner-message .inner {
    width: 80%;
  }
}
#partner-message .message-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1.5;
  color: #083A84;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  transition: 0.1s;
  margin: 0 0 2em 0;
}
@media screen and (min-width: 768px) {
  #partner-message .message-title {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 960px) {
  #partner-message .message-title {
    font-size: 2.5vw;
  }
}
#partner-message .message-title div {
  width: auto;
  display: inline-block;
  margin: 0 0 0.3em 0;
  opacity: 0;
}
#partner-message .message-title div:nth-child(1) {
  animation-name: kf-message-copy-base;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
#partner-message .message-title div br {
  display: none;
}
@media screen and (min-width: 768px) {
  #partner-message .message-title div br {
    display: block;
  }
}
#partner-message p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
  margin: 0 0 2em 0;
}
@media screen and (min-width: 768px) {
  #partner-message p {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  #partner-message p {
    font-size: 1.7vw;
  }
}
#partner-message .conditions {
  margin: 0 0 2em 0;
}
@media screen and (min-width: 768px) {
  #partner-message .conditions {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#partner-message .conditions li {
  background-color: #FFF8D3;
  border-radius: 10px;
  font-weight: 600;
  line-height: 1.5;
  font-size: 1.9rem;
  padding: 0.8em 1em 0.8em 3em;
  margin: 0 0 1em 0;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #partner-message .conditions li {
    width: 48%;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1280px) {
  #partner-message .conditions li {
    font-size: 1.7vw;
  }
}
#partner-message .conditions li::after {
  display: block;
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icon-check.svg") no-repeat center center;
  background-size: cover;
  top: 1em;
  left: 1em;
}
@media screen and (min-width: 768px) {
  #partner-message .conditions li::after {
    width: 28px;
    height: 28px;
  }
}
@media screen and (min-width: 1152px) {
  #partner-message .conditions li::after {
    width: 32px;
    height: 32px;
  }
}
#partner-message .simple-list {
  list-style-type: disc;
  margin: 0 0 3em 2.5em;
}
#partner-message .simple-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1em 0;
}
@media screen and (min-width: 768px) {
  #partner-message .simple-list li {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  #partner-message .simple-list li {
    font-size: 1.7vw;
  }
}

#case-list {
  padding: 0 0 5% 0;
}
#case-list .inner {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  #case-list .inner {
    width: 80%;
  }
}
#case-list .inner .case-list li {
  background-color: #FFFFFF;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.15));
  padding: 2em 2em 2em 1.5em;
  margin: 0 0 5% 0;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  #case-list .inner .case-list li {
    padding: 2.5em 2.5em 2.5em 2em;
  }
}
@media screen and (min-width: 1152px) {
  #case-list .inner .case-list li {
    padding: 3em 3em 3em 2.5em;
    margin: 0 0 4% 0;
  }
}
@media screen and (min-width: 1280px) {
  #case-list .inner .case-list li {
    padding: 3.5em 3.5em 3.5em 3em;
  }
}
#case-list .inner .case-list li a {
  display: block;
  color: #141617;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  #case-list .inner .case-list li a {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
}
#case-list .inner .case-list li a:hover {
  text-decoration: none;
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  #case-list .inner .case-list li .txt-vox {
    width: 58%;
  }
}
@media screen and (min-width: 768px) {
  #case-list .inner .case-list li .txt-vox {
    width: calc(100% - 330px);
  }
}
#case-list .inner .case-list li .img {
  width: 100%;
  aspect-ratio: 1/0.66;
  margin: 0 0 1em 0;
}
@media screen and (min-width: 768px) {
  #case-list .inner .case-list li .img {
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  #case-list .inner .case-list li .img {
    width: 290px;
  }
}
#case-list .inner .case-list li .title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.65;
  text-align: left;
}
#case-list .inner .case-list li p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2;
  margin: 1em 0;
  text-align: left;
}
#case-list .inner .case-list li p.right {
  text-align: right;
}
#case-list .inner .case-list li .tag-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 1em 0 0 0;
}
#case-list .inner .case-list li .tag-list li {
  border: #43494C solid 1px;
  background-color: #FFFFFF;
  filter: none;
  color: #43494C;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 1.3rem;
  padding: 0.5em 1em;
  margin: 0 1em 0.5em 0;
}

#case-pages {
  padding: 0 0 15% 0;
}
#case-pages .inner {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  #case-pages .inner {
    width: 80%;
    max-width: 1280px;
  }
}
#case-pages .inner .link-buttom {
  text-align: center;
  margin: 10% 0 0 0;
}
#case-pages .inner .link-buttom a {
  margin: 0 auto;
}
#case-pages.post-contents .vox {
  padding: 0 0 10% 0;
}
@media screen and (min-width: 768px) {
  #case-pages.post-contents .vox {
    padding: 0 0 7% 0;
  }
}
@media screen and (min-width: 1152px) {
  #case-pages.post-contents .vox {
    padding: 0 0 5% 0;
  }
}
#case-pages.post-contents .eye-catch {
  margin: 0 0 4em 0;
}
#case-pages.post-contents .eye-catch img {
  width: 100%;
  height: auto;
}
#case-pages.post-contents .outline {
  padding: 0 0 10% 0;
}
@media screen and (min-width: 768px) {
  #case-pages.post-contents .outline {
    padding: 0 0 7% 0;
  }
}
@media screen and (min-width: 1152px) {
  #case-pages.post-contents .outline {
    padding: 0 0 5% 0;
  }
}
#case-pages.post-contents .outline .outline-vox {
  border-left: #00B3CD solid 7px;
  padding-left: 20px;
}
@media screen and (min-width: 1280px) {
  #case-pages.post-contents .outline .outline-vox {
    padding-left: 35px;
  }
}
#case-pages.post-contents .outline p {
  font-weight: 500;
}
#case-pages.post-contents .outline h3.title {
  font-size: 2.4rem;
  line-height: 1.4;
  margin: 0 0 1.5em 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  #case-pages.post-contents .outline h3.title {
    font-size: 3.2rem;
  }
}
#case-pages.post-contents .outline h3.title::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #43494C;
  width: 100%;
  height: 1px;
  bottom: -0.5em;
  left: 0;
}
#case-pages.post-contents .outline .tag-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 1em 0 2em 0;
  list-style-type: none;
}
#case-pages.post-contents .outline .tag-list li a {
  border: #43494C solid 1px;
  background-color: #FFFFFF;
  filter: none;
  color: #43494C;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 1.6rem;
  padding: 0.5em 1em;
  margin: 0 1em 0.5em 0;
  transition: 0.2s;
}
#case-pages.post-contents .outline .tag-list li a:hover {
  background-color: #43494C;
  color: #FFFFFF;
  text-decoration: none;
}

#tag {
  padding: 5% 0;
  margin: 0 0 5% 0;
  background-color: #E6F6F8;
}
#tag .inner {
  width: 90%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 4vw;
  color: #49A4BB;
}
@media screen and (min-width: 768px) {
  #tag .inner {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 1152px) {
  #tag .inner {
    width: 80%;
    font-size: 2.6vw;
  }
}
#tag .inner .tag-name {
  font-weight: 600;
}

#recruit-message {
  padding: 0 0 5% 0;
}
#recruit-message .inner {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  #recruit-message .inner {
    width: 80%;
  }
}
#recruit-message .message-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1.5;
  color: #083A84;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  transition: 0.1s;
  margin: 0 0 2em 0;
}
@media screen and (min-width: 768px) {
  #recruit-message .message-title {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 960px) {
  #recruit-message .message-title {
    font-size: 2.5vw;
  }
}
#recruit-message .message-title div {
  width: auto;
  display: inline-block;
  margin: 0 0 0.3em 0;
  opacity: 0;
}
#recruit-message .message-title div:nth-child(1) {
  animation-name: kf-message-copy-base;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
#recruit-message .message-title div br {
  display: none;
}
@media screen and (min-width: 768px) {
  #recruit-message .message-title div br {
    display: block;
  }
}
#recruit-message p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
  margin: 0 0 2em 0;
}
@media screen and (min-width: 768px) {
  #recruit-message p {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  #recruit-message p {
    font-size: 1.7vw;
  }
}
#recruit-message .conditions {
  margin: 0 0 2em 0;
}
@media screen and (min-width: 768px) {
  #recruit-message .conditions {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#recruit-message .conditions li {
  background-color: #FFF8D3;
  border-radius: 10px;
  font-weight: 600;
  line-height: 1.5;
  font-size: 1.9rem;
  padding: 0.8em 1em 0.8em 3em;
  margin: 0 0 1em 0;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #recruit-message .conditions li {
    width: 48%;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1280px) {
  #recruit-message .conditions li {
    font-size: 1.7vw;
  }
}
#recruit-message .conditions li::after {
  display: block;
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icon-check.svg") no-repeat center center;
  background-size: cover;
  top: 1em;
  left: 1em;
}
@media screen and (min-width: 768px) {
  #recruit-message .conditions li::after {
    width: 28px;
    height: 28px;
  }
}
@media screen and (min-width: 1152px) {
  #recruit-message .conditions li::after {
    width: 32px;
    height: 32px;
  }
}
#recruit-message .simple-list {
  list-style-type: disc;
  margin: 0 0 3em 2.5em;
}
#recruit-message .simple-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1em 0;
}
@media screen and (min-width: 768px) {
  #recruit-message .simple-list li {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  #recruit-message .simple-list li {
    font-size: 1.7vw;
  }
}

#news-list {
  padding: 0 0 5% 0;
}
#news-list .inner {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  #news-list .inner {
    width: 80%;
  }
}
#news-list .inner .news-list {
  background-color: #FFFFFF;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.15));
  padding: 1em 2em 0.5em 2em;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  #news-list .inner .news-list {
    padding: 1.5em 2.5em 0.5em 2.5em;
  }
}
@media screen and (min-width: 1152px) {
  #news-list .inner .news-list {
    padding: 4em 4em 1em 4em;
  }
}
#news-list .inner .news-list li {
  position: relative;
  text-align: left;
  padding: 1em 0 5em 0;
}
#news-list .inner .news-list li::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  border-bottom: #CCD0D1 dotted 1px;
  position: absolute;
  left: 0;
  bottom: 4em;
}
#news-list .inner .news-list li a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  color: #141617;
  transition: 0.2s;
}
#news-list .inner .news-list li a:hover {
  text-decoration: none;
  opacity: 0.5;
}
#news-list .inner .news-list__date {
  width: 6em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  color: #43494C;
  margin: 0.3em 0 0.3em 0;
}
#news-list .inner .news-list__icon {
  width: 7em;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
  color: #FFFFFF;
  background-color: #FF8431;
  padding: 0.3em 0;
  margin: 0.3em 0;
  border-radius: 1.6em;
}
#news-list .inner .news-list__title {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0.3em 0 0.3em 0;
}
@media screen and (min-width: 1152px) {
  #news-list .inner .news-list__title {
    width: calc(100% - 14em);
    margin: 0.3em 0 0.3em 1em;
  }
}

#news-pages {
  padding: 0 0 15% 0;
}
#news-pages .inner {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  #news-pages .inner {
    width: 80%;
    max-width: 1280px;
  }
}
#news-pages .inner .link-buttom {
  text-align: center;
  margin: 10% 0 0 0;
}
#news-pages .inner .link-buttom a {
  margin: 0 auto;
}
#news-pages .news-title {
  padding: 0 0 10% 0;
}
#news-pages .news-title h3 {
  font-size: 2.4rem;
  line-height: 1.4;
  margin: 0 0 1em 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  #news-pages .news-title h3 {
    font-size: 3.2rem;
  }
}
#news-pages .news-title h3::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #43494C;
  width: 100%;
  height: 1px;
  bottom: -0.5em;
  left: 0;
}
#news-pages .news-title__date {
  display: inline-block;
  width: 6em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  color: #43494C;
  margin: 0.3em 1em 0.3em 0;
}
#news-pages .news-title__icon {
  display: inline-block;
  width: 7em;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
  color: #FFFFFF;
  background-color: #FF8431;
  padding: 0.3em 0;
  margin: 0.3em 0;
  border-radius: 1.6em;
}

.contact-banner {
  width: 90%;
  margin: 0 auto 100px auto;
}
@media screen and (min-width: 1280px) {
  .contact-banner {
    width: 80%;
  }
}
.contact-banner a {
  display: block;
  position: relative;
  padding: 4em 0 15em 0;
  background: var(--key-gra, linear-gradient(270deg, #7269EA 0%, var(--key-color, #00B3CD) 100%));
  border-radius: 5px;
  color: #FFFFFF;
  transition: 0.4s;
}
.contact-banner a:hover {
  text-decoration: none;
  background: var(--key-gra, linear-gradient(270deg, #00B3CD 0%, var(--key-color, #7269EA) 100%));
}
@media screen and (min-width: 768px) {
  .contact-banner a {
    padding: 3em 3em 3em 4em;
  }
}
@media screen and (min-width: 1152px) {
  .contact-banner a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6em 30em 7em 7em;
  }
}
.contact-banner a .contact-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
.contact-banner a .contact-title__en {
  font-size: 4.8rem;
}
@media screen and (min-width: 768px) {
  .contact-banner a .contact-title__en {
    font-size: 7.5vw;
    text-align: left;
  }
}
@media screen and (min-width: 1152px) {
  .contact-banner a .contact-title__en {
    font-size: 5.1vw;
  }
}
.contact-banner a .contact-title h3 {
  font-size: 1.7rem;
  margin: 1em 0 1.5em 0;
}
@media screen and (min-width: 768px) {
  .contact-banner a .contact-title h3 {
    font-size: 2.2vw;
    text-align: left;
  }
}
@media screen and (min-width: 1152px) {
  .contact-banner a .contact-title h3 {
    font-size: 1.6vw;
    margin: 1em 0 0 0;
  }
}
.contact-banner a p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .contact-banner a p {
    font-size: 1.9vw;
    text-align: left;
  }
}
@media screen and (min-width: 1152px) {
  .contact-banner a p {
    font-size: 1.4vw;
  }
}
.contact-banner a::after {
  display: block;
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  background: url("../images/contact-arrow.svg") no-repeat center center;
  background-size: cover;
  right: 50%;
  bottom: 4em;
  transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .contact-banner a::after {
    right: 6em;
    bottom: 50%;
    transform: translateX(0);
    transform: translateY(50%);
  }
}

#contact-form {
  margin: 0 0 5% 0;
}
@media screen and (min-width: 1280px) {
  #contact-form {
    margin: 0 0 3% 0;
  }
}

.contact-form {
  background-color: #FFFFFF;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  padding: 7.5%;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .contact-form {
    padding: 6%;
  }
}
.contact-form.inner {
  width: 90%;
  margin: 0 auto 100px auto;
}
@media screen and (min-width: 1280px) {
  .contact-form.inner {
    width: 80%;
  }
}
.contact-form .red-style {
  color: #CC2222;
}
.contact-form h3 {
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1;
  padding: 0.5em;
  margin: 0 0 1em 0;
  background-color: #43494C;
  color: #FFFFFF;
  border-radius: 2em;
}
@media screen and (min-width: 768px) {
  .contact-form h3 {
    font-size: 2rem;
  }
}
.contact-form p {
  text-align: left;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 3em 0;
}
@media screen and (min-width: 768px) {
  .contact-form p {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .contact-form p {
    font-size: 1.4vw;
  }
}
@media screen and (min-width: 768px) {
  .contact-form p.center {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .contact-form dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.contact-form dt {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
  padding: 0 0 1em 0;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .contact-form dt {
    font-size: 1.8rem;
    position: relative;
    width: 28%;
    min-height: 12px;
    text-align: right;
  }
}
@media screen and (min-width: 1280px) {
  .contact-form dt {
    font-size: 1.4vw;
  }
}
.contact-form dd {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
  margin: 0 0 15px 0;
}
@media screen and (min-width: 768px) {
  .contact-form dd {
    font-size: 1.8rem;
    width: 67%;
    min-height: 34px;
    margin: 0 0 25px 0;
  }
}
@media screen and (min-width: 1280px) {
  .contact-form dd {
    font-size: 1.4vw;
  }
}
.contact-form dd label {
  font-weight: 500;
}
.contact-form input[type=submit],
.contact-form input[type=button],
.contact-form input[type=text],
.contact-form select,
.contact-form textarea {
  box-shadow: none;
  outline: none;
  border: none;
}
.contact-form input[type=text] {
  margin: 0 10px 0 0;
  padding: 0 10px;
  width: 100%;
  height: 60px;
  border: 1px solid #ccd0d1;
  border-radius: 2px;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .contact-form input[type=text] {
    width: 80%;
  }
}
.contact-form input[type=email] {
  margin: 0 10px 0 0;
  padding: 0 10px;
  width: 100%;
  height: 60px;
  border: 1px solid #ccd0d1;
  border-radius: 2px;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .contact-form input[type=email] {
    width: 80%;
  }
}
.contact-form input[type=tel] {
  margin: 0 10px 0 0;
  padding: 0 10px;
  width: 100%;
  height: 60px;
  border: 1px solid #ccd0d1;
  border-radius: 2px;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .contact-form input[type=tel] {
    width: 80%;
  }
}
.contact-form textarea {
  margin: 0 10px 0 0;
  padding: 0 10px;
  width: 100%;
  height: 240px;
  border: 1px solid #ccd0d1;
  border-radius: 2px;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .contact-form textarea {
    width: 80%;
  }
}
.contact-form input[type=text]:focus,
.contact-form textarea:focus {
  background: rgba(0, 179, 205, 0.1);
}
.contact-form input[type=checkbox],
.contact-form input[type=radio] {
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-form input[type=checkbox] {
  margin: 0 10px 0 0;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  background: url("../images/checkbox@2x.png") no-repeat left top;
}
.contact-form input[type=checkbox]:checked {
  background: url("../images/checkbox-on@2x.png") no-repeat left top;
}
.contact-form input[type=radio] {
  margin: 0 10px 0 0;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  background: url("../images/radio@2x.png") no-repeat left top;
}
.contact-form input[type=radio]:checked {
  background: url("../images/radio-on@2x.png") no-repeat left top;
}
.contact-form .submit-box {
  text-align: center;
  max-width: 340px;
  margin: 40px auto 0 auto;
}
.contact-form .submit-box button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 53px;
  display: block;
  background-color: #083A84;
  border-radius: 26.5px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 53px;
  transition: 0.2s;
}
.contact-form .submit-box button:hover {
  background-color: #00B3CD;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .contact-form .submit-box button {
    font-size: 1.8rem;
  }
}
.contact-form .submit-box input[type=submit],
.contact-form .submit-box input[type=button] {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 53px;
  display: block;
  background-color: #083A84;
  border-radius: 26.5px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 53px;
  position: relative;
  transition: 0.2s;
}
.contact-form .submit-box input[type=submit]:hover,
.contact-form .submit-box input[type=button]:hover {
  background-color: #00B3CD;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .contact-form .submit-box input[type=submit],
  .contact-form .submit-box input[type=button] {
    font-size: 1.8rem;
  }
}

.wpcf7 form .wpcf7-response-output {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .wpcf7 form .wpcf7-response-output {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .wpcf7 form .wpcf7-response-output {
    font-size: 1.4vw;
  }
}

#contact-phone {
  margin: 0 0 15% 0;
}
@media screen and (min-width: 1280px) {
  #contact-phone {
    margin: 0 0 10% 0;
  }
}
#contact-phone .inner {
  width: 90%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #FFFFFF;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  padding: 7.5%;
}
@media screen and (min-width: 1280px) {
  #contact-phone .inner {
    width: 80%;
    padding: 6%;
  }
}
#contact-phone h3 {
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1;
  padding: 0.5em;
  margin: 0 0 1em 0;
  background-color: #43494C;
  color: #FFFFFF;
  border-radius: 2em;
}
@media screen and (min-width: 768px) {
  #contact-phone h3 {
    font-size: 2rem;
  }
}
#contact-phone p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 0 0;
}
@media screen and (min-width: 768px) {
  #contact-phone p {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1280px) {
  #contact-phone p {
    font-size: 2.4vw;
  }
}

#privacy-contents {
  padding: 0 0 5% 0;
}
#privacy-contents .inner {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1280px) {
  #privacy-contents .inner {
    width: 80%;
  }
}
#privacy-contents .vox {
  padding: 0 0 2% 0;
}
#privacy-contents h3 {
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 1em 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  #privacy-contents h3 {
    font-size: 2rem;
  }
}
#privacy-contents h3::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #43494C;
  width: 100%;
  height: 1px;
  bottom: -0.5em;
  left: 0;
}
#privacy-contents p {
  text-align: left;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 1em 0;
}
@media screen and (min-width: 768px) {
  #privacy-contents p {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  #privacy-contents p {
    font-size: 1.4vw;
  }
}
#privacy-contents ol {
  margin: 0 0 1em 1.5em;
  list-style-type: decimal;
  text-align: left;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  #privacy-contents ol {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  #privacy-contents ol {
    font-size: 1.4vw;
  }
}/*# sourceMappingURL=style.css.map */