* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP";
  scroll-behavior: smooth;
}

section {
  display: flex;
  justify-content: center;
}
section .wrapper {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}
section .wrapper .content {
  display: flex;
  width: 100%;
}
section .wrapper .content .s-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}
section .wrapper .content .s-head .s-top {
  display: flex;
  align-items: center;
  gap: 6px;
}
section .wrapper .content .s-head .s-top .c {
  display: flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #F2001D;
}
section .wrapper .content .s-head .s-top .ct {
  color: #5F5F5F;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 600;
}
section .wrapper .content .s-head .t {
  font-size: 2rem;
  font-weight: 400;
}

.pg-title {
  padding: 160px 30px 30px 30px;
  border-bottom: 2px solid #D9D9D9;
}
.pg-title .content {
  flex-direction: column;
}
.pg-title .content .s-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}
.pg-title .content .s-head .s-top {
  display: flex;
  align-items: center;
  gap: 6px;
  order: 2;
}
.pg-title .content .s-head .s-top .c {
  display: flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #F2001D;
}
.pg-title .content .s-head .s-top .ct {
  color: #5F5F5F;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 600;
}
.pg-title .content .s-head .t {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.pg-title .content .bc span {
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.pg-title .content .bc span a {
  text-decoration: none;
  color: #000;
}
.pg-title .content .bc span a:hover {
  text-decoration: underline;
}
.pg-title .content .bc span .current {
  color: #858585;
}

.m-list {
  padding: 100px 30px;
}
.m-list .content {
  flex-direction: column;
}
.m-list .content .m-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.m-list .content .m-title .t {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 24px;
}
.m-list .content .m-title .underline {
  width: 100px;
  height: 2px;
  background-color: #F2001D;
}
.m-list .content .g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.m-list .content .g .gi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.m-list .content .g .gi img {
  width: 100%;
}
.m-list .content .g .gi .item-title {
  font-size: 1.2rem;
  font-weight: 600;
}
.m-list .content .g .gi .gi-btn {
  background-color: #fff;
  color: #F2001D;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  gap: 10px;
  border: 2px solid #F2001D;
  width: 100%;
  padding: 10px;
  border-radius: 40px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.m-list .content .g .gi .gi-btn:hover {
  background-color: #F2001D;
  color: #fff;
}
.m-list .content .g .gi .gi-btn:hover img {
  filter: brightness(0) invert(1);
}
.m-list .content .g .gi .gi-btn img {
  max-width: 24px;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.header .hc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1019607843);
}
.header .hc.scrolling {
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1019607843);
}
.header .hc.scrolling .left img {
  filter: invert(1);
  transition: filter 0.4s ease;
}
.header .hc .left {
  display: flex;
  align-items: center;
}
.header .hc .left img {
  max-width: 170px;
  filter: invert(1);
}
.header .hc .right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .hc .right .header-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #F2001D;
  padding: 6px 0;
  width: 160px;
  font-size: 0.85rem;
}
.header .hc .right .header-btn.r {
  background-color: #F2001D;
  color: #fff;
}
.header .hc .right .header-btn.r:hover {
  background-color: #fff;
  color: #F2001D;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header .hc .right .header-btn.w {
  background-color: #fff;
  color: #F2001D;
}
.header .hc .right .header-btn.w:hover {
  background-color: #F2001D;
  color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-red {
  padding: 100px 30px;
  background-color: #F2001D;
}
.cta-red .content {
  display: flex;
  gap: 40px;
}
.cta-red .content .dv {
  height: 100%;
  width: 2px;
  background-color: #fff;
  margin: 0 40px;
}
.cta-red .content .box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
}
.cta-red .content .box.scd .img-c img {
  max-width: 48px;
}
.cta-red .content .box .t {
  font-size: 2rem;
  font-weight: 500;
}
.cta-red .content .box .st {
  letter-spacing: 1px;
  line-height: 1.6;
  font-size: 1.2rem;
}
.cta-red .content .box .img-c {
  background-color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
}
.cta-red .content .box .img-c:hover {
  transform: scale(1.08);
  transition: transform 0.2s ease;
}
.cta-red .content .box .img-c img {
  max-width: 30px;
}

.footer {
  display: flex;
  justify-content: center;
  background-color: #2A2A2A;
  padding: 100px 30px;
}
.footer .wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}
.footer .wrapper .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer .wrapper .content .ft-links {
  display: flex;
  flex-direction: column;
  color: #fff;
  margin-bottom: 30px;
  gap: 14px;
}
.footer .wrapper .content .ft-links .link {
  list-style-type: none;
}
.footer .wrapper .content .ft-links .link a {
  text-decoration: none;
  color: #fff;
}
.footer .wrapper .content .info {
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.6;
  letter-spacing: 1px;
}
.footer .wrapper .content .insta img {
  max-width: 40px;
}

.cp {
  background-color: #fff;
  padding: 20px 0;
  text-align: center;
}

@media screen and (max-width: 850px) {
  section .wrapper .content .s-head {
    margin-bottom: 60px;
  }
  section .wrapper .content .s-head .s-top .c {
    width: 12px;
    height: 12px;
  }
  section .wrapper .content .s-head .s-top .ct {
    font-size: 1rem;
  }
  section .wrapper .content .s-head .t {
    font-size: 1.6rem;
  }
  .header {
    padding: 10px;
  }
  .header .hc .left img {
    max-width: 140px;
  }
  .header .hc .right {
    display: none;
  }
  .pg-title .content .bc span {
    font-size: 0.8rem;
  }
  .m-list {
    padding: 60px 20px;
  }
  .m-list .content .m-title .t {
    font-size: 1.6rem;
  }
  .m-list .content .g {
    display: flex;
    flex-direction: column;
  }
  .cta-red {
    padding: 60px 20px;
  }
  .cta-red .content {
    flex-direction: column;
  }
  .cta-red .content .dv {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .cta-red .content .box .t {
    font-size: 1.6rem;
  }
  .cta-red .content .box .st {
    font-size: 0.9rem;
  }
  .cta-red .content .box .img-c {
    width: 50px;
    height: 50px;
  }
  .cta-red .content .box .img-c img {
    max-width: 20px;
  }
  .cta-red .content .box.scd .img-c img {
    max-width: 30px;
  }
  .footer {
    padding: 60px 20px;
  }
  .footer .wrapper .content {
    font-size: 0.9rem;
  }
  .footer .wrapper .content .insta img {
    max-width: 30px;
  }
  .cp {
    padding: 12px 0;
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=request-list.css.map */
