@charset "UTF-8";
section.latest-cases {
  padding: 6em 0 2em 0;
  background-color: #F0F0F0;
}
section.latest-cases .container > div:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
section.latest-cases .container > div:first-of-type h2 {
  margin-bottom: 0;
}
section.latest-cases .container > div:first-of-type a.btn01 {
  width: 400px;
}
section.latest-cases .container > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 横3列固定 */
  gap: 2em;
  justify-content: start; /* 左寄せ */
  margin-bottom: 3em;
}
section.latest-cases .container > ul li {
  display: flex;
  flex-direction: column;
}
section.latest-cases .container > ul li img {
  width: 100%;
  aspect-ratio: 353/276;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: white;
  margin-bottom: 1em;
}
section.latest-cases .container > ul li h4 {
  font-size: 150%;
  font-weight: 700;
  color: #31B1B0;
  padding-bottom: 0.5em;
}
section.latest-cases .container > ul li .terms {
  margin-bottom: 0.3em;
}
section.latest-cases .container > ul li .terms span {
  display: inline-block;
  border: 1px solid #333;
  padding: 0.2em 0.5em;
}
section.latest-cases .container > ul li .terms span:not(:last-child) {
  margin-right: 0.5em;
}
section.latest-cases .container > ul li span.client {
  display: block;
  font-weight: 700;
}
section.latest-cases .container > ul li a.btn01 {
  margin-top: auto;
}
section.latest-cases .container > ul li span.date {
  padding-bottom: 0.8em;
}
section.page-support-items {
  padding-bottom: 6em;
}
section.page-support-items .container {
  display: flex;
  justify-content: space-between;
}
section.page-support-items .container > div {
  width: 47%;
  padding: 40px;
  background-color: #FBFBFB;
  border-radius: 0.6em;
}
section.page-support-items .container > div h3 {
  font-size: 150%;
  color: #31B1B0;
  font-weight: 700;
  padding-bottom: 0.5em;
  text-align: center;
}
section.page-support-items .container > div p {
  text-align: center;
}
section.page-support-items .container > div p.tel span {
  font-size: 220%;
}
section.page-support-items .container > div p.tel span::before {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background: url(../svgs/icon01.svg) no-repeat center center;
  background-size: contain;
  transform: translateY(0.3em);
}
section.page-support-items .container > div p:last-child {
  font-size: 85%;
}
section.page-support-items .container > div a.btn01 {
  width: 90%;
  padding: 1.2em;
  margin: 0 auto;
}
section.page-support-items .container > div:first-child p {
  padding-bottom: 3em;
}
section.notfound {
  padding-bottom: 6em;
}
section.notfound .container > p:first-child {
  font-size: 115%;
  font-weight: 700;
  padding-bottom: 2em;
}
section.notfound .container form, section.search .container form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.notfound .container form label, section.search .container form label {
  padding-right: 1em;
}
section.notfound .container form input, section.search .container form input {
  padding: 0.8em 0.5em 0.8em 1em;
  border: 1px solid #c0c0c0;
  border-radius: 0.3em;
  margin-right: 0.5em;
}
section.notfound .container form button[type=submit], section.search .container form button[type=submit] {
  width: 5em;
  padding: 0.8em 0;
  border-radius: 0.3em;
  background-color: #555555;
  border-color: #555555;
  color: white;
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
}
section.notfound .container form button[type=submit]:hover, section.search .container form button[type=submit]:hover {
  background-color: #31B1B0;
  transition: background-color 300ms ease;
}
section.search {
  padding-bottom: 6em;
}
section.search .container form {
  margin-bottom: 4em;
}
section.search .container .wp-block-query ul li {
  padding-left: 1em;
  margin-bottom: 1.8em;
  position: relative;
}
section.search .container .wp-block-query ul li::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  background-color: #31B1B0;
  border-radius: 50%;
}
section.search .container .wp-block-query ul li > div > a h2 {
  font-size: 115%;
  font-weight: 700;
  margin-bottom: 0.3em;
}

@media screen and (max-width: 900px) {
  section.latest-cases .container > ul {
    grid-template-columns: repeat(2, 1fr); /* 横2列固定 */
  }
  section.page-support-items .container {
    display: block;
  }
  section.page-support-items .container > div {
    width: 100%;
  }
  section.page-support-items .container > div:first-child {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  section.latest-cases .container > div:first-of-type {
    display: block;
  }
  section.latest-cases .container > div:first-of-type h2 {
    margin-bottom: 0.2em;
  }
  section.latest-cases .container > div:first-of-type a.btn01 {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 600px) {
  section.latest-cases .container > div:first-of-type h2 {
    margin-bottom: 0.5em;
  }
  section.latest-cases .container > div:first-of-type a.btn01 {
    width: 90%;
    margin: 0 auto;
  }
  section.latest-cases .container > ul {
    display: block;
  }
  section.latest-cases .container > ul li:not(:last-child) {
    margin-bottom: 8vw;
  }
}
section.feature01 {
  padding-bottom: 6em;
}
section.feature01 .container {
  display: flex;
  justify-content: space-between;
}
section.feature01 .container .l {
  width: calc(100% - 5em - 320px);
}
section.feature01 .container .l p {
  padding-bottom: 1.5em;
}
section.feature01 .container .img {
  width: 320px;
}
section.feature01 .container .img img {
  width: 100%;
  height: auto;
}
section.feature02 {
  padding: 6em 0;
  background-color: #444;
  color: white;
}
section.feature02 .container h2 {
  padding-bottom: 1em;
}
section.feature02 .container > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 5em;
       column-gap: 5em;
  margin-bottom: 6em;
}
section.feature02 .container > div h3 {
  font-size: 280%;
  font-weight: 700;
}
section.feature02 .container > div h4 {
  font-size: 180%;
  font-weight: 700;
}
section.feature02 .container > div img {
  width: 490px;
  height: auto;
}
section.feature02 .container > div:first-of-type, section.feature02 .container > div:nth-of-type(3) {
  flex-direction: row-reverse;
}
section.feature02 .container > div:last-child {
  margin-bottom: 0;
}
section.feature03 {
  padding-bottom: 6em;
}
section.feature03 .container > div {
  display: flex;
  justify-content: space-between;
}
section.feature03 .container > div > figure {
  width: 32%;
}
section.privacy01 {
  padding-bottom: 4em;
}
section.privacy01 .container {
  max-width: 1080px;
}
section.privacy01 .container > p {
  padding-bottom: 2em;
}
section.privacy01 .container > p:first-child, section.privacy01 .container > p:nth-child(2) {
  padding-bottom: 4em;
}
section.privacy01 .container > p a {
  text-decoration: underline;
  word-break: break-all;
  overflow-wrap: anywhere;
}
section.privacy01 .container h2 {
  font-size: 135%;
  font-weight: 700;
  padding-bottom: 1em;
}

@media screen and (max-width: 1200px) {
  section.feature02 .container > div {
    -moz-column-gap: 3em;
         column-gap: 3em;
  }
  section.feature02 .container > div img {
    width: 45%;
  }
}
@media screen and (max-width: 900px) {
  section.feature01 .container {
    display: block;
  }
  section.feature01 .container .l {
    width: 100%;
  }
  section.feature01 .container .l p {
    padding-bottom: 1.5em;
  }
  section.feature01 .container .img {
    width: 100%;
  }
  section.feature03 .container > div {
    display: block;
  }
  section.feature03 .container > div > figure {
    width: 80%;
    margin: 0 auto;
  }
  section.feature03 .container > div > figure:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  section.feature02 .container > div {
    display: block;
  }
  section.feature02 .container > div > div {
    padding-bottom: 2em;
  }
  section.feature02 .container > div img {
    width: 100%;
  }
  section.feature03 .container > div > figure {
    width: 100%;
  }
}