@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
.fadeIn {
  opacity: 0;
  transition: all 0.6s;
}
.fadeIn.active {
  opacity: 1;
}

.fadeInLeft {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 1s;
}
.fadeInLeft.active {
  opacity: 1;
  transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  transform: translateX(100%);
  transition: all 1s;
}
.fadeInRight.active {
  opacity: 1;
  transform: translateX(0);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  html {
    overflow-x: hidden;
  }
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4em;
  color: #333;
}

main {
  margin-top: 200px;
}
@media screen and (max-width: 1024px) {
  main {
    margin-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  img.pc {
    display: none !important;
  }
}

img.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  img.sp {
    display: block !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  br.pc {
    display: none;
  }
}

br.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  br.sp {
    display: inline;
  }
}

.ttl {
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #0097ac;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .ttl {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
}
.ttl strong {
  margin-top: 15px;
  display: block;
  font-size: 3.2rem;
  font-weight: 600;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .ttl strong {
    font-size: 1.8rem;
  }
}

.read {
  font-size: 1.6rem;
  line-height: 1.6;
}

.btn {
  display: block;
  width: 130px;
  padding: 17px 0;
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s;
}
.btn:hover {
  transform: scale(1.1);
}
.btn.blue {
  color: #fff;
  background: linear-gradient(70deg, #0097ac, #79efff);
  box-shadow: 0px 2px 5px rgba(0, 151, 172, 0.3);
}
.btn.white {
  background-color: #fff;
  color: #0097ac;
  border: 1px solid #0097ac;
  box-shadow: 0px 2px 5px rgba(0, 151, 172, 0.3);
}
.btn.yellow {
  font-weight: 500;
  padding: 9px 0;
  background-color: #ffc700;
}
.btn.big {
  height: 57px;
  padding: 20px 0 0 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100px;
  background-color: #fff;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 60px;
  }
}
.header__inner {
  height: 100%;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    justify-content: space-between;
    padding: 0 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 20px;
  }
}
.header__logo {
  position: absolute;
  top: 0;
  left: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 153px;
  height: 100px;
  z-index: 101;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    position: relative;
    top: auto;
    left: auto;
    width: 150px;
    height: 65px;
  }
}
.header__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 100;
  }
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header__nav ul {
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav ul li {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav ul li:nth-child(7), .header__nav ul li:nth-child(8), .header__nav ul li:nth-child(9) {
    margin-top: 30px;
    width: 110px;
  }
}
@media screen and (max-width: 768px) {
  .header__nav ul li:nth-child(7), .header__nav ul li:nth-child(8), .header__nav ul li:nth-child(9) {
    margin-top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header__nav ul li:nth-child(7) {
    margin-top: 30px;
  }
}
.header__nav ul li a {
  font-weight: 700;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .header__nav ul li a {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav ul li a {
    font-size: 14px;
  }
}
.header__nav ul li a:not(.btn):hover {
  color: #0097ac;
}
@media screen and (max-width: 1024px) {
  .header__nav ul .btn {
    width: 110px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .header__nav ul .btn {
    width: 180px;
  }
}
.header .menuTrigger {
  display: none;
  position: relative;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  z-index: 101;
  transition: all 0.2s ease;
}
@media screen and (max-width: 1024px) {
  .header .menuTrigger {
    display: flex;
  }
}
.header .menuTrigger div {
  position: relative;
  width: 35px;
  height: 25px;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.header .menuTrigger div span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333333;
  border-radius: 10px;
  transition: all 0.4s;
  box-sizing: border-box;
}
.header .menuTrigger div span:nth-of-type(1) {
  top: 0;
}
.header .menuTrigger div span:nth-of-type(2) {
  top: 12px;
}
.header .menuTrigger div span:nth-of-type(3) {
  bottom: 0;
}
.header .menuTrigger div.active span:nth-of-type(1) {
  transform: translateY(10px) translateX(7px) rotate(-45deg);
  width: 30px;
  height: 1px;
}
.header .menuTrigger div.active span:nth-of-type(2) {
  opacity: 0;
}
.header .menuTrigger div.active span:nth-of-type(3) {
  transform: translateY(-14px) translateX(7px) rotate(45deg);
  width: 30px;
  height: 1px;
}

.mv {
  margin: 0 auto;
  width: 1280px;
}
@media screen and (max-width: 1024px) {
  .mv {
    width: 90vw;
    padding-left: 0;
  }
}
.mv__inner {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .mv__inner {
    flex-wrap: wrap;
    gap: 50px;
  }
}
.mv__txt {
  width: 403px;
}
@media screen and (max-width: 1024px) {
  .mv__txt {
    width: 100%;
  }
}
.mv__txt .read {
  padding-left: 18px;
  line-height: 1.6;
  font-size: 1.4rem;
  font-weight: 400;
}
.mv__txt .btn {
  width: 350px;
  margin: 30px auto 10px auto;
  padding: 28px 0;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .mv__txt .btn {
    width: 250px;
    font-size: 1.8rem;
    padding: 20px 0;
    margin: 25px auto 10px auto;
  }
}
.mv__txt .caution {
  margin-top: 10px;
  display: block;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .mv__txt .caution {
    font-size: 1rem;
  }
}
.mv__ttl {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .mv__ttl {
    display: block;
    max-width: 400px;
    margin: 0px auto 30px auto;
  }
}
@media screen and (max-width: 768px) {
  .mv__ttl {
    margin: 0 auto;
  }
}
.mv__circle {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .mv__circle {
    display: none;
  }
}
.mv__circle div {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  width: 120px;
  min-width: 120px;
  height: 120px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #0097ac;
  background-color: #fff;
  border: 2px solid #0097ac;
  border-radius: 50%;
}
.mv__circle div strong {
  width: 100%;
  font-weight: 600;
  font-size: 140%;
  margin-bottom: 4px;
}
.mv__circle div .small {
  font-size: 10px;
  margin-bottom: 3px;
}
.mv__movie {
  position: relative;
  height: 604px;
  width: 951px;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .mv__movie {
    width: 100%;
    height: auto;
  }
}
.mv__movie img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .mv__movie img {
    display: none;
  }
}
.mv__movie iframe {
  position: absolute;
  top: 65px;
  left: 120px;
  width: 620px;
  height: 390px;
}
@media screen and (max-width: 1024px) {
  .mv__movie iframe {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 515px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .mv__movie iframe {
    height: 205px;
  }
}

.news {
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .news {
    padding: 40px 7.5vw 20px;
  }
}
.news__inner {
  margin-top: 15px;
  text-align: center;
}
.news__inner a {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .news__inner a {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.point {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .point {
    margin-top: 20px;
  }
}
.point__wrap {
  width: 95%;
  max-width: 1200px;
  margin: 30px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .point__wrap.pc {
    display: none;
  }
}
.point__wrap.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .point__wrap.sp {
    display: block;
    width: 85vw;
  }
}
.point__content {
  width: calc((100% - 42px) / 4);
  padding: 30px 0 10px 0;
  background-color: #fff;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .point__content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0 0px 0;
    box-shadow: none;
  }
}
.point__content:first-child .point__img {
  margin-top: 30px;
  width: 143px;
}
@media screen and (max-width: 1024px) {
  .point__content:first-child .point__img {
    margin-top: 0;
    width: 50px;
  }
}
.point__content:nth-child(2) .point__img {
  width: 210px;
}
@media screen and (max-width: 1024px) {
  .point__content:nth-child(2) .point__img {
    width: 85px;
  }
}
.point__content:nth-child(3) .point__img {
  width: 185px;
}
@media screen and (max-width: 1024px) {
  .point__content:nth-child(3) .point__img {
    width: 85px;
  }
}
.point__content:nth-child(3) .point__ttl strong {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .point__content:nth-child(3) .point__ttl strong {
    font-size: 1.4rem;
  }
}
.point__content:last-child .point__img {
  width: 210px;
}
@media screen and (max-width: 1024px) {
  .point__content:last-child .point__img {
    width: 95px;
  }
}
.point__content .img-area {
  max-height: 160px;
  min-height: 160px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .point__content .img-area {
    background: #c8e7eb;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    max-height: 90px;
    min-height: 90px;
  }
}
.point__content .read {
  text-align: left;
  padding: 0 15px;
}
@media screen and (max-width: 1024px) {
  .point__content .read {
    font-size: 1.2rem;
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .point__txt {
    width: calc(100% - 100px);
    text-align: left;
  }
}
.point__num {
  margin-bottom: 16px;
  font-family: "Montserrat", sans-serif;
  color: #0097ac;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .point__num {
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
}
.point__ttl {
  color: #0097ac;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .point__ttl {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 5px;
  }
}
.point__ttl strong {
  display: block;
  font-size: 2.4rem;
  margin-top: 8px;
}
.point__img {
  height: auto;
}

.howto {
  margin-top: 250px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .howto {
    margin-top: 100px;
  }
}
.howto iframe {
  width: 60vw;
  height: 33vw;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .howto iframe {
    width: 90vw;
    height: 50vw;
  }
}
.howto__wrap {
  margin-bottom: 40px;
}
.howto .btn {
  margin: 40px auto 0 auto;
  width: 90%;
  max-width: 700px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .howto .btn {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.feature {
  margin-top: 150px;
}
@media screen and (max-width: 1024px) {
  .feature {
    margin-top: 100px;
  }
}
.feature__content {
  width: 95%;
  max-width: 1200px;
  margin: 50px auto 0 auto;
  display: flex;
  align-items: center;
  gap: 150px;
}
@media screen and (max-width: 1024px) {
  .feature__content {
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px auto 0 auto;
  }
}
.feature__txt {
  width: 350px;
}
@media screen and (max-width: 1024px) {
  .feature__txt {
    width: 100%;
    order: 1;
  }
}
.feature__num {
  margin-bottom: 10px;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 3.6rem;
  color: #0097ac;
}
.feature__num::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 85%;
  height: 2px;
  background-color: #0097ac;
}
@media screen and (max-width: 1024px) {
  .feature__num::after {
    display: none;
  }
}
.feature__ttl {
  margin-bottom: 20px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .feature__ttl {
    margin-bottom: 15px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .feature .read {
    font-size: 1.2rem;
  }
}
.feature__img {
  width: calc(100% - 500px);
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .feature__img {
    width: 100%;
    order: 2;
  }
}
.feature .other-feature {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 95%;
  max-width: 1200px;
  margin: 200px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .feature .other-feature {
    flex-wrap: wrap;
    margin: 100px auto 0 auto;
  }
}
.feature .other-feature__ttl {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 3.2rem;
  width: 310px;
  background: linear-gradient(to right, #0097ac, #79efff);
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .feature .other-feature__ttl {
    background: transparent;
    color: #333333;
    font-size: 1.8rem;
    width: auto;
  }
}
.feature .other-feature__ttl span {
  display: block;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .feature .other-feature__ttl span {
    font-size: 1.5rem;
    color: #0097ac;
  }
}
.feature .other-feature__list {
  width: calc(100% - 350px);
  display: flex;
  flex-wrap: wrap;
  gap: 50px 20px;
}
@media screen and (max-width: 1024px) {
  .feature .other-feature__list {
    width: 100%;
    gap: 10px;
  }
}
.feature .other-feature__list li {
  width: calc((100% - 20px) / 2);
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .feature .other-feature__list li {
    width: 100%;
    gap: 10px;
  }
}
.feature .other-feature__img {
  width: auto;
  height: 80px;
}
@media screen and (max-width: 1024px) {
  .feature .other-feature__img {
    height: 50px;
  }
}
.feature .other-feature__txt h3 {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .feature .other-feature__txt h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0097ac;
    margin-bottom: 5px;
  }
}

.design {
  margin-top: 200px;
  padding: 62px 0;
  background-color: #EEEEEE;
}
@media screen and (max-width: 1024px) {
  .design {
    margin-top: 100px;
  }
}
.design h3 {
  margin-bottom: 60px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .design h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
}
.design__wrap li img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.design__wrap .slick-slide {
  padding: 30px;
}

.client {
  padding: 62px 0;
}
.client .read {
  text-align: center;
}
.client .read strong {
  font-size: 150%;
  color: #0097ac;
}
@media screen and (max-width: 768px) {
  .client .read strong {
    font-size: 110%;
  }
}
.client .read strong.underline {
  position: relative;
}
.client .read strong.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 10px;
  background-color: #ffc700;
  z-index: -1;
  transition: all 1s ease 0.5s;
}
.client .read strong.underline.is-inview::after {
  width: 100%;
}
.client .read span {
  font-size: 65%;
  transform: translate(-3px, -10px);
  display: inline-block;
}
.client .caution {
  max-width: 340px;
  margin: 10px auto 0 auto;
  line-height: 1.4;
}
.client__list {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.client__list li {
  width: calc((100% - 48px) / 4);
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .client__list li {
    height: auto;
  }
}
.client__list li img {
  width: 70%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .client__list li img {
    width: 90%;
  }
}

.showcase {
  position: relative;
  padding: 100px 0;
  background-image: url("../img/bg-showcase.jpg");
  background-position: center;
  background-size: cover;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .showcase {
    padding: 30px 0px 30px;
  }
}
.showcase .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4156862745);
  z-index: 1;
}
.showcase__inner {
  position: relative;
  z-index: 2;
}
.showcase .ttl strong {
  color: #fff;
}
.showcase p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.6;
}
.showcase .btn {
  width: 340px;
  margin: 30px auto 0 auto;
  padding: 20px 0;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .showcase .btn {
    font-size: 1.6rem;
    width: 235px;
    padding: 15px 0;
  }
}

.price {
  margin-top: 60px;
}
.price .color {
  color: #0097ac;
}
.price__wrap {
  width: 60vw;
  min-width: 910px;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .price__wrap {
    width: 85vw;
    min-width: 0;
  }
}
.price__content {
  position: relative;
  width: calc((100% - 40px) / 3);
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  padding: 40px 10px 40px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .price__content {
    width: 100%;
    max-width: 450px;
    padding: 25px 10px 25px;
  }
}
.price__content h3 {
  font-size: 1.8rem;
}
.price__content h3 strong {
  font-family: "Lato", sans-serif;
  font-size: 330%;
  margin: 0 5px;
}
@media screen and (max-width: 1024px) {
  .price__content h3 strong {
    font-size: 270%;
  }
}
.price__content h3 span {
  display: block;
  font-size: 1.4rem;
  color: #a4a4a4;
}
@media screen and (max-width: 1024px) {
  .price__content h3 span {
    font-size: 1.2rem;
  }
}
.price__content .read {
  color: #777777;
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .price__content .read {
    font-size: 1.2rem;
    margin-top: 10px;
  }
}
.price__ttl {
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .price__ttl {
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}
.price__free {
  position: absolute;
  top: -15px;
  width: 65%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0097ac;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 30px;
  padding: 8px 0px;
}
@media screen and (max-width: 1024px) {
  .price__free {
    position: relative;
    top: auto;
    font-size: 1.2rem;
    width: 50%;
    margin-bottom: 20px;
  }
}
.price__icon {
  position: absolute;
  left: 0;
  bottom: -100px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .price__icon {
    position: relative;
    left: auto;
    bottom: auto;
    width: 90%;
    margin: 10px auto 0 auto;
  }
}
.price__table {
  margin: 200px auto 0 auto;
  width: 75vw;
  max-width: 1100px;
}
@media screen and (max-width: 1024px) {
  .price__table {
    display: none;
  }
}
.price__table tr {
  border-bottom: 2px solid #eaeaea;
}
.price__table th,
.price__table td {
  padding: 16px 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  vertical-align: middle;
}
.price__table th:not(:first-child),
.price__table td:not(:first-child) {
  width: 22%;
}
.price__table th {
  color: #0097ac;
}
.price__table td:first-child span {
  display: block;
  margin-top: 8px;
  font-size: 80%;
  font-weight: 400;
}
.price__table td span {
  font-size: 70%;
}
.price__detail {
  width: 85%;
  margin: 10px auto;
  padding-top: 10px;
  border-top: 1px solid #c6c6c6;
}
.price__detail li {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2px 8px;
  font-size: 1.1rem;
  color: #777777;
  text-align: left;
}
.price__detail li:not(:last-child) {
  margin-bottom: 10px;
}
.price__detail li.mt_40 {
  margin-top: 40px;
}
.price__detail li img {
  margin-top: 3px;
  width: 10px;
  height: auto;
}
.price__detail li span {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 0.9rem;
  padding-left: 18px;
}
.price__detail li strong {
  color: #000000;
}

.qa {
  background-color: #c8e7eb;
  margin-top: 100px;
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .qa {
    padding: 60px 0;
  }
}
.qa .ttl {
  color: #ffffff;
}
.qa .ttl + .read {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .qa .ttl + .read {
    font-size: 1.2rem;
  }
}
.qa__wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 75vw;
  max-width: 1100px;
  margin: 60px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .qa__wrap {
    width: 90vw;
  }
}
.qa__content {
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 20px;
}
@media screen and (max-width: 1024px) {
  .qa__content {
    padding: 20px;
  }
}
.qa__content dt {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 600;
  color: #0097ac;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .qa__content dt {
    margin-bottom: 5px;
    align-items: flex-start;
    font-size: 1.4rem;
    gap: 10px;
  }
}
.qa__content dt.trigger {
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}
.qa__content dt.trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 20px;
  width: 20px;
  height: 40px;
  background-image: url(../img/arrow_r.svg);
  background-position: center;
  background-size: cover;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  .qa__content dt.trigger::after {
    top: 3px;
    right: 0px;
    transform: translateY(0) rotate(90deg);
    font-size: 1.2rem;
    width: 10px;
    height: 20px;
  }
}
.qa__content dt.trigger.isShow::after {
  transform: translateY(-50%) rotate(-90deg);
}
.qa__content dt span {
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 1024px) {
  .qa__content dt span {
    font-size: 1.6rem;
  }
}
.qa__content dd {
  padding-left: 3em;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .qa__content dd {
    font-size: 1rem;
    padding-left: 2.4em;
  }
}
.qa__content dd.hidden {
  display: none;
}

.cta {
  padding: 80px 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 60px 0 0;
  }
}
.cta__ttl {
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .cta__ttl {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
.cta__ttl span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .cta__ttl span {
    margin-top: 5px;
  }
}
.cta .btn-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .cta .btn-wrap {
    display: block;
    margin-top: 0;
    text-align: center;
  }
}
.cta .btn-wrap .btn {
  width: 340px;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .cta .btn-wrap .btn {
    display: block;
    margin: 20px auto;
    width: 180px;
    font-size: 1.2rem;
  }
}
.cta .btn-wrap .btn.white {
  border-width: 2px;
}
.cta.cta02 .btn-wrap {
  gap: 30px;
}
.cta.cta02 .btn-wrap .btn {
  width: 300px;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .cta.cta02 .btn-wrap .btn {
    font-size: 1.4rem;
    width: 250px;
  }
}

.breadcrumbs {
  margin: 100px auto 0 auto;
  width: 90%;
  max-width: 1000px;
  line-height: 1.6;
}

.footer {
  padding: 60px 0 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 50px 0 20px;
  }
}
.footer__logo {
  width: 300px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 235px;
  }
}
.footer__nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px 20px;
  max-width: 1000px;
  margin: 40px auto 60px;
}
@media screen and (max-width: 1024px) {
  .footer__nav {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav {
    gap: 12px;
    margin: 30px auto 50px;
  }
}
.footer__nav li {
  width: calc((100% - 80px) / 5);
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .footer__nav li {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav li {
    width: 100%;
    text-align: center;
  }
}
.footer__nav li.hidden > ul {
  display: none;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid #0097ac;
}
.footer__nav li.hidden > ul li {
  position: relative;
  width: 100%;
  padding-left: 20px;
}
.footer__nav li.hidden > ul li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #0097ac;
  border-radius: 2px;
}
.footer__nav li.hidden > ul li:not(:last-child) {
  margin-bottom: 8px;
}
.footer__nav li.hidden > ul li a {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
}
.footer__nav li a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #0097ac;
}
@media screen and (max-width: 1024px) {
  .footer__nav li a {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav li a {
    font-size: 1.2rem;
  }
}
.footer__copy {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 1.2rem;
  }
}

.post-thumbnail img {
  width: 100%;
  height: auto;
}

hr.wp-block-separator {
  border-top: 1px solid #ccc;
  margin: 10px 0;
}

.page-corporate .scroll-hint-icon-blue {
  background-color: #0097ac;
}
.page-corporate .mv__txt .read {
  font-size: 1.8rem;
  text-align: center;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .page-corporate .mv__txt .read {
    font-size: 1.6rem;
  }
}
.page-corporate .problem {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .page-corporate .problem {
    padding: 40px 0;
  }
}
.page-corporate .problem img {
  display: block;
  width: 95%;
  max-width: 1200px;
  margin: 60px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .page-corporate .problem img {
    margin: 30px auto 0 auto;
  }
}
.page-corporate .point {
  margin-top: 0;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .page-corporate .point {
    padding: 40px 0;
  }
}
.page-corporate .point__num {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .page-corporate .point__num {
    font-size: 1.8rem;
  }
}
.page-corporate .feature02 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .page-corporate .feature02 {
    padding: 40px 0;
  }
}
.page-corporate .feature02__img {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-corporate .feature02__img {
    overflow-x: scroll;
  }
}
.page-corporate .feature02 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .page-corporate .feature02 img {
    width: 800px;
  }
}
.page-corporate .howto {
  margin-top: 150px;
}
.page-corporate .feature {
  margin-top: 50px;
}
.page-corporate .price .read {
  text-align: center;
}
.page-corporate .price__table {
  margin: 60px auto 0 auto;
}
.page-corporate .price__table th:not(:first-child),
.page-corporate .price__table td:not(:first-child) {
  width: 50%;
}
.page-corporate .comparison {
  padding: 100px 0;
}
.page-corporate .comparison__table {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  border-collapse: separate;
  border-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .page-corporate .comparison__table {
    width: 850px;
  }
}
@media screen and (max-width: 768px) {
  .page-corporate .comparison__table__wrap {
    overflow-x: scroll;
    margin: 0 5vw;
  }
}
.page-corporate .comparison__table th,
.page-corporate .comparison__table td {
  padding: 10px 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-corporate .comparison__table th,
  .page-corporate .comparison__table td {
    padding: 10px;
  }
}
.page-corporate .comparison__table th:not(:first-child) {
  font-size: 2rem;
  background-color: #dcf2f5;
}
@media screen and (max-width: 768px) {
  .page-corporate .comparison__table th:not(:first-child) {
    font-size: 1.5rem;
  }
}
.page-corporate .comparison__table th:nth-child(2) {
  background-color: #8ddce7;
  transform: scale(1.2) translate(2px, -4px);
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .page-corporate .comparison__table th:nth-child(2) {
    transform: scale(1.2) translate(2px, -2px);
  }
}
.page-corporate .comparison__table td {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page-corporate .comparison__table td {
    font-size: 1.4rem;
  }
}
.page-corporate .comparison__table td:first-child {
  background-color: #bababa;
  color: #fff;
}
.page-corporate .comparison__table td:not(:first-child) {
  background-color: #eee;
}
.page-corporate .comparison__table td:nth-child(2) {
  font-weight: 700;
}
.page-corporate .qa {
  margin-top: 0;
}
.page-corporate .qa__content dt {
  margin-bottom: 0;
}
.page-corporate .qa__content dd {
  margin-top: 20px;
}
.page-corporate .qa__content dd .indent {
  text-indent: -1em;
  padding-left: 1em;
}
.page-corporate .cta .read {
  width: 90%;
  margin: 10px auto 0 auto;
  font-size: 1.2rem;
  text-align: center;
}
.page-corporate .cta .btn {
  width: 350px;
  padding: 28px 0;
  font-size: 2rem;
}

.page-form {
  text-align: center;
  background-color: #c8e7eb;
}
.page-form .header {
  display: none;
}
@media screen and (max-width: 1024px) {
  .page-form .header {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .page-form main {
    margin-top: 200px;
  }
}
.page-form h2 {
  margin-bottom: 22px;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .page-form h2 {
    font-size: 2.4rem;
  }
}
.page-form h2 + p {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .page-form h2 + p {
    padding: 0 7.5vw;
    text-align: left;
  }
}
.page-form form {
  width: 740px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .page-form form {
    width: 75vw;
  }
}
.page-form dl {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .page-form dl {
    flex-wrap: wrap;
    gap: 5px;
  }
}
.page-form dl:nth-last-child(2) {
  align-items: flex-start;
}
.page-form dl.check {
  margin-top: 40px;
  justify-content: center;
  gap: 10px;
}
.page-form dt {
  width: calc(100% - 550px);
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .page-form dt {
    width: 100%;
    font-size: 1.4rem;
  }
}
.page-form dt span {
  color: red;
  margin-left: 2px;
}
.page-form dd {
  width: 550px;
}
@media screen and (max-width: 1024px) {
  .page-form dd {
    width: 100%;
  }
}
.page-form dd input,
.page-form dd select,
.page-form dd textarea {
  width: 100%;
  background-color: #fff;
  padding: 15px;
  border-radius: 4px;
  font-size: 1.5rem;
}
.page-form dd textarea {
  resize: none;
  height: 160px;
}
.page-form button {
  background: #0097ac;
  border-radius: 8px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
  letter-spacing: 0em;
  line-height: 1.4;
  margin: 0 auto;
  padding: 10px 30px 10px;
  transition: all 0.3s;
}
.page-form button:hover {
  transform: scale(1.1);
}
.page-form .logo {
  display: block;
  width: 300px;
  margin: 200px auto 20px auto;
}
@media screen and (max-width: 1024px) {
  .page-form .logo {
    margin: 270px auto 20px auto;
  }
}
.page-form .logo img {
  width: 100%;
  height: auto;
}
.page-form .footer {
  padding: 20px 0;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .page-form .footer p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1024px) {
  .page-news main {
    margin-top: 120px;
  }
}
.page-news .ttl + p {
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .page-news .ttl + p {
    font-size: 1.4rem;
  }
}
.page-news .news-tab {
  max-width: 350px;
  margin: 30px auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .page-news .news-tab {
    margin: 60px auto 30px auto;
  }
}
.page-news .news-tab li {
  width: calc((100% - 30px) / 4);
}
.page-news .news-tab li a {
  display: block;
  width: 100%;
  background: #eeeeee;
  border-radius: 4px;
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  padding: 5px 10px;
  text-align: center;
  transition: all 0.3s;
}
.page-news .news-tab li a:hover {
  background: #cccccc;
}
.page-news .news-list {
  padding: 60px 0;
  background-image: url("../img/news/bg-newsList.jpg");
  background-position: center;
  background-size: cover;
}
.page-news .news-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 70vw;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .page-news .news-list ul {
    width: 85vw;
  }
}
.page-news .news-list li {
  width: calc((100% - 60px) / 3);
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 1024px) {
  .page-news .news-list li {
    width: 100%;
    padding: 14px 14px;
  }
}
@media screen and (max-width: 1024px) {
  .page-news .news-list li a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
}
.page-news .news-list li img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .page-news .news-list li img {
    width: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page-news .news-list li .news-txt {
    width: calc(100% - 95px);
  }
}
.page-news .news-list li h3 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 30px auto 10px auto;
}
@media screen and (max-width: 1024px) {
  .page-news .news-list li h3 {
    margin: 0 auto 10px auto;
  }
}
.page-news .news-list li p {
  color: #666666;
  font-size: 15px;
  font-weight: 400;
}
.page-news .news-list li .tag {
  margin-top: 8px;
  display: inline-block;
  background: #eeeeee;
  border-radius: 4px;
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  padding: 5px 10px 5px 10px;
  text-align: left;
}
.page-news .news-list .load-more {
  display: block;
  width: 280px;
  margin: 30px auto 0 auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
  color: #333;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  padding: 10px 0;
}

.page-column .column-detail {
  max-width: 650px;
  margin: 0 auto;
}
.page-column .mv-img {
  display: block;
  width: 100%;
  max-width: 650px;
  height: auto;
  margin: 30px auto 0 auto;
}
.page-column h3 {
  background: #EEEEEE;
  border-radius: 16px;
  font-family: var(--s-font-288fec04);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  padding: 20px 20px 20px 30px;
  text-align: left;
}
.page-column ol {
  font-size: 1.6rem;
  color: #0097ac;
  margin: 0 0 0 20px;
}
.page-column ol li {
  list-style: decimal;
  margin: 10px 0;
}
.page-column strong {
  color: #0097ac;
}
.page-column .column-ttl {
  margin: 100px auto 70px auto;
  padding-bottom: 20px;
  border-bottom: 2px solid #EEEEEE;
}
@media screen and (max-width: 1024px) {
  .page-column .column-ttl {
    padding: 0 5vw 20px 5vw;
  }
}
.page-column .column-ttl h2 {
  font-size: 2.8rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .page-column .column-ttl h2 {
    font-size: 1.8rem;
  }
}
.page-column .column-ttl .tag {
  margin-top: 10px;
  display: inline-block;
  background: #eeeeee;
  border-radius: 4px;
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  padding: 5px 10px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .page-column .column-ttl .tag {
    font-size: 1.2rem;
  }
}
.page-column p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 40px;
}
.page-column p a {
  color: #007cff;
  text-decoration: underline;
}
.page-column .detail-footer {
  margin-top: 60px;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 1024px) {
  .page-column .detail-footer {
    margin: 60px 2.5vw 0 2.5vw;
  }
}
.page-column .related {
  background: #c8e7eb;
  margin-top: 100px;
  padding: 30px 0;
}
.page-column .related h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.page-column .related__list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 65vw;
  max-width: 690px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .page-column .related__list ul {
    width: 85vw;
  }
}
.page-column .related__list li {
  width: calc((100% - 30px) / 2);
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 1024px) {
  .page-column .related__list li {
    width: 100%;
    padding: 14px 14px;
  }
}
@media screen and (max-width: 1024px) {
  .page-column .related__list li a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
}
.page-column .related__list li img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .page-column .related__list li img {
    width: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page-column .related__list li .news-txt {
    width: calc(100% - 95px);
  }
}
.page-column .related__list li h3 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 30px auto 10px auto;
}
@media screen and (max-width: 1024px) {
  .page-column .related__list li h3 {
    margin: 0 auto 10px auto;
  }
}
.page-column .related__list li p {
  color: #666666;
  font-size: 15px;
  font-weight: 400;
  margin-top: 0px;
}
.page-column .related__list li .tag {
  margin-top: 8px;
  display: inline-block;
  background: #eeeeee;
  border-radius: 4px;
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  padding: 5px 10px 5px 10px;
  text-align: left;
}
.page-column .related__list .btn {
  width: 200px;
  margin: 20px auto 0 auto;
  padding: 13px 0;
  border: 2px solid #0097ac;
  box-shadow: none;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .page-column .related__list .btn {
    font-size: 1.6rem;
    margin: 60px auto 0 auto;
  }
}

.page-showcase .mv {
  position: relative;
  background-image: url("../img/bg-showcase.jpg");
  background-position: center;
  background-size: cover;
  width: 100vw;
  height: 340px;
}
@media screen and (max-width: 1024px) {
  .page-showcase .mv {
    height: 200px;
  }
}
.page-showcase .mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2705882353);
  z-index: 1;
}
.page-showcase .mv__ttl {
  position: absolute;
  left: 18vw;
  bottom: 60px;
  color: #fff;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: 600;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .page-showcase .mv__ttl {
    left: 5vw;
    width: 90vw;
    font-size: 1.8rem;
  }
}
.page-showcase .mv__subttl {
  position: absolute;
  right: 18vw;
  bottom: 40px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .page-showcase .mv__subttl {
    font-size: 1.4rem;
    left: 5vw;
    right: auto;
    bottom: 30px;
  }
}
.page-showcase .simpletoc-list {
  width: 95vw;
  max-width: 630px;
  background-color: #f5f5f5;
  border-radius: 2px;
  color: #616161;
  font-size: 16px;
  list-style: none;
  margin: 50px auto 40px auto;
  padding: 24px 55px;
  border-radius: 8px;
}
.page-showcase .simpletoc-list li:not(:last-child) {
  margin-bottom: 16px;
}
.page-showcase .simpletoc-list li a {
  display: flex;
  gap: 18px;
  font-family: sans-serif;
  font-weight: 600;
}
.page-showcase .wp-block-heading {
  width: 95vw;
  max-width: 630px;
  margin: 0 auto 10px auto;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0097ac;
}
.page-showcase p {
  width: 95vw;
  max-width: 630px;
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 auto 40px auto;
}
.page-showcase .entry-content {
  max-width: 630px;
  margin: 0 auto;
}
.page-showcase .showcase-info {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 690px;
  width: 95vw;
  margin: 150px auto 0 auto;
  background: #EEEEEE;
  padding: 30px;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .page-showcase .showcase-info {
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
  }
}
.page-showcase .showcase-info pre {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 700;
}
.page-showcase .showcase-info__img {
  width: 244px;
}
.page-showcase .showcase-info__txt {
  width: calc(100% - 274px);
}
@media screen and (max-width: 1024px) {
  .page-showcase .showcase-info__txt {
    width: 100%;
  }
}
.page-showcase .showcase-info__txt h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 600;
}
.page-showcase .showcase-info__txt dl {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-size: 1.2rem;
}
.page-showcase .showcase-info__txt dt {
  font-size: 1.2rem;
  color: #333;
  margin-top: 5px;
  margin-bottom: 0;
}
.page-showcase .showcase-info__txt dd {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}
.page-showcase .related {
  background: #c8e7eb;
  margin-top: 100px;
  padding: 30px 0;
}
.page-showcase .related h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.page-showcase .related__list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 65vw;
  max-width: 690px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .page-showcase .related__list ul {
    width: 85vw;
  }
}
.page-showcase .related__list li {
  width: calc((100% - 30px) / 2);
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 1024px) {
  .page-showcase .related__list li {
    width: 100%;
    padding: 14px 14px;
  }
}
@media screen and (max-width: 1024px) {
  .page-showcase .related__list li a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
}
.page-showcase .related__list li img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .page-showcase .related__list li img {
    width: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .page-showcase .related__list li .news-txt {
    width: calc(100% - 95px);
  }
}
.page-showcase .related__list li h3 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 30px auto 10px auto;
}
@media screen and (max-width: 1024px) {
  .page-showcase .related__list li h3 {
    margin: 0 auto 10px auto;
  }
}
.page-showcase .related__list li p {
  color: #666666;
  font-size: 15px;
  font-weight: 400;
  margin-top: 0px;
  width: 100%;
}
.page-showcase .related__list li .tag {
  margin-top: 8px;
  display: inline-block;
  background: #eeeeee;
  border-radius: 4px;
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  padding: 5px 10px 5px 10px;
  text-align: left;
}
.page-showcase .related__list .btn {
  width: 200px;
  margin: 20px auto 0 auto;
  padding: 13px 0;
  border: 2px solid #0097ac;
  box-shadow: none;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .page-showcase .related__list .btn {
    font-size: 1.6rem;
    margin: 60px auto 0 auto;
  }
}