@charset "UTF-8";

/* +++++++++ mainvisual +++++++++ */
#mainvisual {
  position: relative;
  width: 100%;
  height: 100svh;
  z-index: -1;
}
#mainvisual::before,
#mainvisual::after {
  content: "";
  position: fixed;
  top: 10svh;
  left: 0;
  width: 100%;
  height: 90svh;
}
#mainvisual::before {
  background-image: url(../images/mainvisual_pic01.svg);
  background-repeat: no-repeat;
  background-position: left 12%;
  background-size: 28svh auto;
  z-index: 1;
  transform: translateY(-100px);
}
#mainvisual.is-start::before {
  animation: openingSlideInTop 0.75s ease-out forwards;
  animation-delay: 2.55s;
}
@keyframes openingSlideInTop {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}
#mainvisual::after {
  background-image: url(../images/mainvisual_pic02.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% + 150px);
  background-size: auto 100%;
  transform: translateX(100px);
}
#mainvisual.is-start::after {
  animation: openingSlideInRight 0.75s ease-out forwards;
  animation-delay: 2.55s;
}
@keyframes openingSlideInRight {
  0% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(0);
  }
}
#mainvisual p:nth-child(1) {
  position: fixed;
  bottom: 23%;
  left: 5%;
  z-index: 2;
}
#mainvisual p:nth-child(2) {
  position: fixed;
  bottom: 14%;
  left: 5%;
  font-size: 1.2rem;
  z-index: 2;
}
.mainvisualText {
  display: block;
  font-size: 3rem;
  line-height: 1.45;
  -webkit-text-stroke: 5px var(--white);
  paint-order: stroke;
}
.mainvisualText:last-child {
  position: relative;
}
.mainvisualText:last-child::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 2em;
  height: 5px;
  background-color: var(--accent-color-yellow);
  border-radius: 2.5px;
}
#mainvisual ul {
  display: flex;
  position: fixed;
  bottom: 7%;
  left: 5%;
  gap: 15px;
  z-index: 2;
}
#mainvisual li {
  position: relative;
  flex: 1;
  width: 170px;
  height: 40px;
  border-radius: 9999px;
}
#mainvisual li:nth-child(1) {
  background-color: rgba(15, 98, 150, 0.07);
}
#mainvisual li:nth-child(2) {
  background-color: rgba(240, 238, 31, 0.13);
}
#mainvisual li:nth-child(3) {
  background-color: rgba(159, 207, 109, 0.12);
}
#mainvisual li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 25%;
  height: 100%;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
}
#mainvisual li:nth-child(1)::before {
  border: 3px solid rgba(15, 98, 150, 0.07);
}
#mainvisual li:nth-child(2)::before {
  border: 3px solid rgba(240, 238, 31, 0.13);
}
#mainvisual li:nth-child(3)::before {
  border: 3px solid rgba(159, 207, 109, 0.12);
}
#mainvisual li::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  height: 100%;
  transform: translateY(-50%);
  font-family: "Material Symbols Rounded";
  font-size: 22px;
}
#mainvisual li:nth-child(1)::after {
  content: "devices";
  color: var(--accent-color-blue);
}
#mainvisual li:nth-child(2)::after {
  content: "palette";
  color: var(--accent-color-yellow);
}
#mainvisual li:nth-child(3)::after {
  content: "deployed_code";
  color: var(--accent-color-green);
}
#mainvisual li span {
  position: absolute;
  top: 50%;
  right: 0;
  width: 80%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (min-width: 1600px) {
  #mainvisual::after {
    background-position-x: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  #mainvisual::before {
    background-position: left 22%;
    background-size: 26svh auto;
  }
  #mainvisual::after {
    background-position-x: calc(100% + 650px);
  }
  #mainvisual .pc-none {
    display: none;
  }
}

@media only screen and (max-width: 1024px) and (max-height: 600px) {
  #mainvisual::after {
    background-position-x: calc(100% + 170px);
  }
  #mainvisual p:nth-child(1) {
    bottom: 32%;
  }
  #mainvisual p:nth-child(2) {
    bottom: 18%;
  }
}

@media only screen and (max-width: 768px) {
  #mainvisual::before {
    background-position: left 20%;
    background-size: 24svh auto;
  }
  #mainvisual::after {
    background-position-x: calc(100% + 500px);
  }
}

@media only screen and (max-width: 540px) {
  #mainvisual::before {
    background-position: left 18%;
    background-size: 22svh auto;
  }
  #mainvisual::after {
    background-position-x: calc(100% + 350px);
  }
  #mainvisual p:nth-child(2) {
    bottom: 13%;
    font-size: 0.95rem;
  }
  .mainvisualText {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .mainvisualText:last-child::after {
    bottom: -20px;
  }
  #mainvisual ul {
    bottom: 4%;
    transform: scale(0.8);
    transform-origin: top left;
  }
}

@media only screen and (max-width: 430px) {
  #mainvisual::before {
    background-position: -25% 20%;
  }
  #mainvisual::after {
    background-position-x: calc(100% + 320px);
  }
  #mainvisual p:nth-child(1) {
    bottom: 27%;
  }
  #mainvisual .pc-none {
    display: block;
  }
  #mainvisual ul {
    transform: scale(0.7);
  }
}

@media only screen and (max-width: 375px) {
  #mainvisual::before {
    background-position: -20% 25%;
  }
  #mainvisual::after {
    background-position-x: calc(100% + 255px);
  }
  #mainvisual p:nth-child(2) {
    font-size: 0.85rem;
  }
  .mainvisualText {
    font-size: 2.2rem;
  }
  .mainvisualText:last-child::after {
    bottom: -15px;
  }
  #mainvisual ul {
    bottom: 2%;
    transform: scale(0.6);
  }
}

/* +++++++++ topics +++++++++ */
#topics.outer {
  padding-top: 50px;
  padding-bottom: 60px !important;
}
.topicsContents {
  position: relative;
  padding-left: 20px;
}
.topicsContents h2 {
  align-items: flex-start;
  margin-bottom: 0;
  font-size: 1.65rem;
  color: var(--accent-color-blue);
}
.topicsContents::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 5px;
  height: 85%;
  transform: translateY(-50%);
  background-color: var(--accent-color-yellow);
  border-radius: 2.5px;
}
#topics time {
  font-weight: 700;
  color: var(--bace-color-darkgray);
}

@media only screen and (max-width: 768px) {
  .topicsContents h2 {
    font-size: 1.3rem;
  }
}

/* +++++++++ vision +++++++++ */
#vision {
  display: flex;
}
.visionMainpic {
  width: 45%;
  min-height: 580px;
  background-image: url(../images/vision_pic01.jpg);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: cover;
  border-radius: 300px 20px 20px 20px;
}
.visionContents {
  width: 55%;
  text-align: right;
}
.visionContents h2 {
  font-size: 3rem;
  line-height: 1.35;
  align-items: end;
  margin-bottom: 30px;
  color: var(--accent-color-blue);
}
.visionRead {
  position: relative;
  margin-bottom: 90px !important;
  font-size: 1.5rem;
  font-weight: 700;
}
.visionRead::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 12em;
  height: 5px;
  background-color: var(--accent-color-yellow);
  border-radius: 2.5px;
}
.visionContents p {
  margin-bottom: 50px;
}
.visionContents p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .visionContents h2 {
    font-size: 2.4rem;
    line-height: 1.1;
  }
  .visionRead {
    font-size: 1.2rem;
  }
  .visionContents p {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 540px) {
  #vision {
    flex-direction: column;
  }
  .visionMainpic {
    width: 100%;
    min-height: 290px;
    margin-bottom: 50px;
    background-position: center center;
    border-radius: 20px 200px 20px 20px;
  }
  .visionContents {
    width: 100%;
    text-align: left;
  }
  .visionContents h2 {
    align-items: start;
  }
  .visionRead::after {
    right: auto;
    left: 0;
  }
  .visionContents .pc-none {
    display: none;
  }
}

@media only screen and (max-width: 430px) {
  .visionContents .pc-none {
    display: block;
  }
}

/* +++++++++ service +++++++++ */
#service > ul > li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 300px;
  z-index: 0;
}
#service > ul > li:nth-child(odd) {
  flex-direction: row-reverse;
}
#service > ul > li:last-child {
  margin-bottom: 150px;
}
#service > ul > li::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 70%;
  height: 23em;
  z-index: -1;
  background-color: var(--bace-color-gray);
  border-radius: 200px 20px 20px 20px;
}
#service > ul > li:nth-child(even)::after {
  left: 10%;
  border-radius: 20px 200px 20px 20px;
}
#service figure {
  width: 50%;
}
#service figure img {
  border-radius: 20px 200px 200px 20px;
}
#service > ul > li:nth-child(even) figure img {
  border-radius: 200px 20px 20px 200px;
}
.serviceContents {
  position: relative;
  top: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
}
.serviceContents > div {
  display: flex;
  flex-direction: column;
  padding: 55px 35px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(56, 64, 71, 0.08);
}
.serviceContents h3 {
  margin-bottom: 30px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
.serviceContents h3 span {
  display: block;
  font-size: 1.65rem;
  line-height: 1.35;
  color: var(--accent-color-blue);
}
.serviceContents > p {
  margin-bottom: 30px;
}
.serviceContents div ul {
  display: flex;
  margin-top: 30px;
}
.serviceContents div li {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.serviceContents div li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 2px;
  height: calc(100% - 4px);
  background: repeating-linear-gradient(
    to bottom,
    var(--bace-color-gray) 0 6px,
    transparent 6px 11px
  );
}
.serviceContents .material-symbols-outlined {
  padding: 12px;
  font-size: 32px;
  background-color: var(--accent-color-yellow);
  border-radius: 50%;
}
.serviceContents div li span:last-child {
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 1200px) and (min-width: 541px) {
  #service > ul > li::after {
    top: 15%;
    width: 80%;
  }
  .serviceContents {
    width: 45%;
  }
  .serviceContents > div {
    padding: 45px 25px;
  }
  .serviceContents div ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  .serviceContents div li:not(:last-child)::after {
    content: none;
  }
  .serviceContents .sp-none {
    display: block;
  }
}

@media only screen and (max-width: 768px) and (min-width: 541px) {
  #service > ul > li {
    margin-bottom: 200px;
  }
  #service > ul > li:last-child {
    margin-bottom: 110px;
  }
  #service > ul > li::after {
    top: 10%;
  }
  .serviceContents {
    top: 110px;
    width: 45%;
  }
  .serviceContents > div {
    padding: 35px 25px;
  }
  .serviceContents h3 {
    margin-bottom: 20px;
    font-size: 0.8rem;
  }
  .serviceContents h3 span {
    font-size: 1.3rem;
    line-height: 1.1;
  }
  .serviceContents div ul {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0;
  }
  .serviceContents div ul {
    margin-top: 20px;
  }
  .serviceContents div li {
    flex-direction: row;
    gap: 10px;
    padding: 8px 0;
  }
  .serviceContents div li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 2px;
    width: calc(100% - 4px);
    height: 2px;
    background: repeating-linear-gradient(
      to right,
      var(--bace-color-gray) 0 6px,
      transparent 6px 11px
    );
  }
  .serviceContents .material-symbols-outlined {
    padding: 8px;
    font-size: 18px;
  }
  .serviceContents div li span:last-child {
    font-size: 0.7rem;
    line-height: 1.2;
    text-align: left;
  }
  .serviceContents .sp-none {
    display: none;
  }
}

@media only screen and (max-width: 540px) {
  #service > ul > li {
    flex-direction: column !important;
    margin-bottom: 80px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(56, 64, 71, 0.08);
  }
  #service > ul > li:last-child {
    margin-bottom: 0;
  }
  #service > ul > li::after {
    content: none;
  }
  #service figure {
    width: 100%;
  }
  #service figure img {
    border-radius: 20px 20px 0 0;
  }
  #service > ul > li:nth-child(even) figure img {
    border-radius: 20px 20px 0 0;
  }
  .serviceContents {
    top: 0;
    width: 100%;
  }
  .serviceContents > div {
    padding: 35px 25px;
    border-radius: 0 0 20px 20px;
    box-shadow: none;
  }
  .serviceContents h3 {
    margin-bottom: 20px;
    font-size: 0.8rem;
  }
  .serviceContents h3 span {
    font-size: 1.3rem;
    line-height: 1.1;
  }
  .serviceContents div ul {
    margin-top: 25px;
  }
  .serviceContents div li {
    gap: 8px;
  }
  .serviceContents .material-symbols-outlined {
    padding: 10px;
    font-size: 25px;
  }
  .serviceContents div li span:last-child {
    font-size: 0.7rem;
    line-height: 1.35;
  }
  .serviceContents .sp-none {
    display: block;
  }
}

@media only screen and (max-width: 430px) {
  .serviceContents > div {
    padding: 35px 20px;
  }
  .serviceContents div li span:last-child {
    font-size: 0.6rem;
  }
}

@media only screen and (max-width: 430px) {
  .serviceContents > div {
    padding: 30px 15px;
  }
  .serviceContents .material-symbols-outlined {
    padding: 8px;
    font-size: 23px;
  }
}

/* +++++++++ about +++++++++ */
.aboutContents {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}
.aboutContents figure {
  flex-shrink: 0;
  width: clamp(230px, 30vw, 280px);
  aspect-ratio: 1 / 1;
}
.aboutContents figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
#about ul {
  flex: 1;
  width: 60%;
}
#about li {
  border-bottom: 2px dashed var(--bace-color-gray);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#about li:last-child {
  margin-bottom: 0;
}
#about dl {
  display: flex;
  justify-content: space-between;
}
#about dt {
  width: 30%;
  padding-left: 45px;
  font-weight: 700;
}
#about dd {
  width: 70%;
}

@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 540px) {
  .aboutContents {
    flex-direction: column;
    gap: 40px;
  }
  .aboutContents figure {
    width: 190px;
  }
  #about ul {
    width: 100%;
  }
}

@media only screen and (max-width: 430px) {
  #about dt {
    padding-left: 30px;
  }
}

/* +++++++++ portfolio +++++++++ */
#portfolio h2 {
  margin-bottom: 20px;
}
.portfolioContents {
  padding: 0 50px;
}
.portfolioContents a,
.newProjectLink {
  /* 実績4件以上でコメントアウト */
  display: flex;
  flex-direction: column;
  margin: 40px 25px;
  padding-bottom: 25px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(56, 64, 71, 0.08);
  overflow: hidden;
}
.portfolioContents figure {
  height: 220px;
  margin-bottom: 5px;
  overflow: hidden;
}
.portfolioContents figure img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px 20px 0 0;
  transition: 0.2s all ease;
}
.newProjectTitle {
  /* 実績4件以上でコメントアウト */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  margin-bottom: 5px !important;
  font-size: 1.1rem;
  background-color: var(--bace-color-gray);
  border-radius: 20px 20px 0 0;
}
.portfolioContents a:hover {
  transform: translateY(-10px);
}
.portfolioContents a:hover .compButton:before {
  width: 100%;
}
.portfolioContents a:hover figure img {
  transform: scale(1.08);
}
.newProjectText {
  /* 実績4件以上でコメントアウト */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  font-size: 0.8rem;
  text-align: center;
}
.portfolioContentsWrap {
  min-height: 320px;
}
.portfolioContentsWrap div {
  padding: 15px 0;
  margin: 0 20px;
  border-bottom: 2px dashed var(--bace-color-gray);
}
.portfolioContentsWrap div span {
  color: var(--accent-color-blue);
  font-weight: 700;
  font-size: 0.8rem;
}
.portfolioContentsWrap h3 {
  font-weight: 700;
  font-size: 1.35rem;
}
.portfolioContentsWrap ul {
  padding-top: 15px;
  margin: 0 20px;
  font-size: 0.8rem;
}
.portfolioContentsWrap dl {
  display: flex;
}
.portfolioContentsWrap dt {
  width: 30%;
  font-weight: 700;
}
.portfolioContentsWrap dd {
  width: 70%;
}
.portfolioContentsWrap > p {
  padding: 15px 0;
  margin: 0 20px;
  font-size: 0.8rem;
}
.portfolioContents a > span,
.newProjectLink > span {
  /* 実績4件以上でコメントアウト */
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: inherit;
}
.compButton.newProjectButton {
  /* 実績4件以上でコメントアウト */
  color: var(--main-color);
  background-color: var(--bace-color-darkgray);
}
.compButton.newProjectButton::before {
  /* 実績4件以上でコメントアウト */
  content: none;
}
.compButton.newProjectButton::after {
  /* 実績4件以上でコメントアウト */
  content: none;
}
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slick-prev:before,
.slick-next:before {
  display: none;
}
.slick-prev,
.slick-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color-blue);
  border-radius: 50%;
  transition: 0.2s all ease;
}
.slick-prev {
  left: -15px;
}
.slick-next {
  right: -15px;
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus:hover,
.slick-next:focus:hover {
  background-color: var(--sub-color);
}
.slick-prev:focus,
.slick-next:focus {
  background-color: var(--accent-color-blue);
}
.slick-prev span,
.slick-next span,
.slick-prev:hover span,
.slick-next:hover span,
.slick-prev:focus span,
.slick-next:focus span {
  color: var(--white);
}
.slick-dots {
  position: static;
}
.slick-dots li button:before {
  color: var(--bace-color-darkgray);
  font-size: 10px;
  opacity: 1;
  transition: 0.2s all ease;
}
.slick-dots li.slick-active button:before {
  color: var(--accent-color-blue);
  opacity: 1;
}
.pswp__button--arrow--prev,
.pswp__button--arrow--next {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  #portfolio h2 {
    margin-bottom: 5px;
  }
  .portfolioContentsWrap {
    min-height: 265px;
  }
}

@media only screen and (max-width: 540px) {
  .portfolioContentsWrap {
    min-height: 310px;
  }
}

@media only screen and (max-width: 430px) {
  .portfolioContents {
    padding: 0;
  }
  .portfolioContents a {
    margin: 40px 25px;
  }
  .slick-prev,
  .slick-next {
    display: none !important;
  }
}

@media only screen and (max-width: 375px) {
  .portfolioContentsWrap {
    min-height: 335px;
  }
}

/* +++++++++ flow +++++++++ */
.flowContents {
  margin: 0 auto;
  max-width: 800px;
}
.flowContents li {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 25px;
  padding-bottom: 50px;
}
.flowContents li:last-child {
  padding-bottom: 0;
}
.flowContents li > span {
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}
.flowContents li:not(:last-child) > span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22.5px;
  width: 2px;
  height: calc(100% + 50px);
  background: repeating-linear-gradient(
    to bottom,
    var(--bace-color-gray) 0 6px,
    transparent 6px 11px
  );
  z-index: -1;
}
.flowContents li > span span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--accent-color-green);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
}
.flowContents div {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.flowContents div h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 45px;
}
.flowContents div p {
  font-size: 0.9rem;
}

@media only screen and (max-width: 768px) {
  .flowContents li {
    gap: 20px;
    padding-bottom: 40px;
  }
  .flowContents li:not(:last-child) > span::after {
    left: 21px;
    height: calc(100% + 40px);
  }
  .flowContents li > span span {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  .flowContents div {
    gap: 5px;
  }
  .flowContents div h3 {
    font-size: 1rem;
    line-height: 42px;
  }
  .flowContents div p {
    font-size: 0.8rem;
  }
}

/* +++++++++ price +++++++++ */
.priceWrap {
  max-width: 800px;
  margin: 0 auto;
}
.priceWrap > ul {
  width: 100%;
}
.priceWrap > ul li {
  border-bottom: 2px dashed var(--bace-color-gray);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.priceWrap dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.priceWrap dt {
  position: relative;
  width: 70%;
  margin-left: 30px;
  padding-left: 85px;
}
.priceWrap dt::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transform: translateY(-50%);
  font-family: "Material Symbols Outlined";
  font-size: 35px;
  border-radius: 50%;
  color: var(--main-color);
  background-color: var(--accent-color-yellow);
}
.priceWrap > ul li:nth-child(1) dt::after {
  content: "devices";
}
.priceWrap > ul li:nth-child(2) dt::after {
  content: "web";
}
.priceWrap > ul li:nth-child(3) dt::after {
  content: "badge";
}
.priceWrap > ul li:nth-child(4) dt::after {
  content: "autorenew";
}
.priceWrap h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.priceWrap dt p {
  font-size: 0.9rem;
}
.priceWrap dd {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 30%;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}
.priceWrap dd span {
  font-weight: 700;
}
.priceWrap dd span:nth-child(1),
.priceWrap dd span:nth-child(2) {
  font-size: 1rem;
}
.priceWrap dd span:nth-child(1),
.priceWrap dd span:nth-child(3) {
  align-self: end;
}
.priceWrap dd span:nth-child(3) {
  font-size: 0.9rem;
}
.priceWrap > div ul {
  margin-top: 50px;
}
.priceWrap > div ul li {
  position: relative;
  padding-left: 15px;
  font-size: 0.9rem;
}
.priceWrap > div ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: var(--accent-color-green);
}

@media only screen and (max-width: 1024px) {
  .priceWrap .pc-none {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .priceWrap > ul li {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .priceWrap dt::after {
    width: 55px;
    height: 55px;
    font-size: 30px;
  }
  .priceWrap h3 {
    font-size: 1rem;
  }
  .priceWrap dt p {
    font-size: 0.8rem;
  }
  .priceWrap dd {
    font-size: 1.5rem;
  }
  .priceWrap dd span:nth-child(1),
  .priceWrap dd span:nth-child(2) {
    font-size: 0.9rem;
  }
  .priceWrap dd span:nth-child(3) {
    font-size: 0.8rem;
  }
  .priceWrap > div ul {
    margin-top: 40px;
  }
  .priceWrap > div ul li {
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 540px) {
  .priceWrap > ul dl {
    flex-direction: column;
    gap: 10px;
  }
  .priceWrap dt {
    width: 100%;
  }
  .priceWrap dd {
    justify-content: end;
    width: 100%;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 430px) {
  .priceWrap dt {
    margin-left: 0;
    padding-left: 70px;
  }
  .priceWrap dt::after {
    width: 53px;
    height: 53px;
    font-size: 28px;
  }
  .priceWrap dd {
    padding-right: 0;
  }
  .priceWrap .pc-none {
    display: block;
  }
}

@media only screen and (max-width: 375px) {
  .priceWrap .pc-none {
    display: none;
  }
}

/* +++++++++ cta +++++++++ */
#cta.outer {
  padding-bottom: 310px !important;
}
.ctaMainpic {
  position: relative;
  height: 350px;
  margin-left: 25%;
  z-index: 0;
}
.ctaMainpic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/cta_pic01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
  border-radius: 20px 200px 200px 20px;
}
.ctaMainpic::after {
  content: "";
  position: absolute;
  top: 70px;
  left: -32%;
  width: 100%;
  height: 350px;
  background-color: var(--bace-color-darkgray);
  z-index: -1;
  border-radius: 200px 20px 20px 20px;
}

@media only screen and (max-width: 1024px) {
  .ctaMainpic {
    height: 25svh;
  }
  .ctaMainpic::after {
    height: 25svh;
  }
}

@media only screen and (max-width: 768px) {
  #cta.outer {
    padding-bottom: 200px !important;
  }
  .ctaMainpic::after {
    top: 50px;
  }
}

@media only screen and (max-width: 430px) {
  .ctaMainpic::before {
    border-radius: 20px 150px 150px 20px;
  }
  .ctaMainpic::after {
    border-radius: 150px 20px 20px 20px;
  }
}

/* +++++++++ contact +++++++++ */
#contact form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 85px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(56, 64, 71, 0.08);
}
#contact dl {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
#contact dt {
  display: flex;
  gap: 5px;
  width: 35%;
  font-weight: 700;
}
#contact dd {
  width: 65%;
}
.requiredMark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 20px;
  transform: translateY(4px);
  color: var(--white);
  background-color: var(--accent-color-blue);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 9999px;
}
#contact input[type="text"],
#contact input[type="tel"],
#contact input[type="email"],
#contact textarea {
  width: 100%;
  background-color: var(--bace-color-gray);
  padding: 15px 20px;
  transition: 0.2s all ease;
}
#contact input[type="text"]:focus,
#contact input[type="tel"]:focus,
#contact input[type="email"]:focus,
#contact textarea:focus {
  outline: none;
  background-color: var(--bace-color-darkgray);
}
input::placeholder,
textarea::placeholder {
  color: var(--gray);
  opacity: 1;
}
#contact input[type="text"],
#contact input[type="tel"],
#contact input[type="email"] {
  height: 50px;
  border-radius: 9999px;
}
#contact textarea {
  height: 200px;
  border-radius: 20px;
}
#contact p {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}
#contact p .requiredMark {
  margin-left: 3px;
  transform: translateY(-2px);
}
input[type="checkbox"] {
  position: relative;
  top: 4px;
  margin: 0 6px 0 0;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 2px solid var(--bace-color-darkgray);
  border-radius: 25%;
  transition: 0.2s all ease;
}
input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--accent-color-green);
  border-bottom: 2px solid var(--accent-color-green);
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.2s all ease;
}
input[type="checkbox"]:hover {
  border: 2px solid var(--accent-color-green);
}
input[type="checkbox"]:checked::after {
  opacity: 1;
}
#contact button {
  font-size: inherit;
  font-weight: 700;
  letter-spacing: inherit;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  #contact p {
    font-size: 0.7rem;
  }
  .requiredMark {
    width: 36px;
    height: 18px;
    font-size: 0.5rem;
  }
}

@media only screen and (max-width: 540px) {
  #contact form {
    padding: 45px 40px;
  }
  #contact dl {
    flex-direction: column;
    gap: 8px;
  }
  #contact dt {
    width: 100%;
  }
  #contact dd {
    width: 100%;
  }
  #contact input[type="text"],
  #contact input[type="tel"],
  #contact input[type="email"],
  #contact textarea {
    padding: 15px 20px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 430px) {
  #contact form {
    padding: 35px 25px;
  }
}
