@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.cta {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .cta {
    background: #fff;
    border-top: solid 2px #000;
    width: 100%;
    align-items: center;
    bottom: 0;
    padding: 5px;
  }
}
.cta h3 {
  text-align: center;
  margin-bottom: 0.2em;
  color: #E6216E;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.3;
}
@media screen and (max-width: 800px) {
  .cta h3 br {
    display: none;
  }
}
.cta ul {
  width: 160px;
}
@media screen and (max-width: 800px) {
  .cta ul {
    width: 100%;
    display: flex;
    gap: 5px;
  }
}
.cta ul li {
  list-style: none;
  padding: 4px 0;
  flex: 1;
}
@media screen and (max-width: 800px) {
  .cta ul li {
    padding: 0;
  }
}
.cta ul li.instagram a {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  overflow: hidden;
  position: relative;
}
.cta ul li.instagram a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.cta ul li.instagram a img,
.cta ul li.instagram a span {
  position: relative;
}
.cta ul li.tiktok a {
  background: #000;
}
.cta ul li.mail a {
  background: #E6216E;
}
.cta ul li a {
  display: flex;
  color: #fff;
  align-items: center;
  text-decoration: none;
  padding: 0.4em;
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .cta ul li a {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 13px;
    padding: 0.6em 0.2em;
  }
}
.cta ul li a img {
  width: 2em;
}
@media screen and (max-width: 800px) {
  .cta ul li a img {
    width: 1.4em;
  }
}
.cta ul li a span {
  flex: 1;
  text-align: center;
}

.mainvisual {
  width: 100%;
  position: relative;
  aspect-ratio: 144/85;
}
@media screen and (max-width: 600px) {
  .mainvisual {
    aspect-ratio: 8/12;
  }
}
.mainvisual img {
  display: block;
  width: 100%;
}
.mainvisual img.pc {
  display: block;
}
@media screen and (max-width: 600px) {
  .mainvisual img.pc {
    display: none;
  }
}
.mainvisual img.sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .mainvisual img.sp {
    display: block;
  }
}

.contents {
  margin-top: -200px;
  margin-bottom: 80px;
  padding: 0 15px;
}
@media screen and (max-width: 1500px) {
  .contents {
    margin-top: -10vw;
  }
}
@media screen and (max-width: 800px) {
  .contents {
    margin-top: 0;
  }
}
.contents .inner {
  max-width: 1000px;
  border: solid 2px #000;
  margin: 0 auto;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.contents .inner .about {
  padding: 40px;
}
@media screen and (max-width: 800px) {
  .contents .inner .about {
    padding: 20px;
  }
}
.contents .inner .about .txt {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  line-height: 2;
}
.contents .inner .about .txt a {
  text-decoration: underline;
  color: #E6216E;
}
.contents .inner .about .txt b {
  background: #EFEA3C;
  padding: 0 0.2em;
}
.contents .inner .profile {
  position: relative;
}
.contents .inner .profile .bg {
  width: 100%;
  position: absolute;
  top: 40px;
  left: -20%;
}
@media screen and (max-width: 800px) {
  .contents .inner .profile .bg {
    display: none;
  }
}
.contents .inner .profile .bg img {
  width: 100%;
}
.contents .inner .profile .photo {
  width: 100%;
  position: absolute;
  top: -20px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .contents .inner .profile .photo {
    top: 0px;
  }
}
.contents .inner .profile .photo img {
  width: 100%;
  transform: scale(1.01);
}
.contents .inner .profile .photo img.pc {
  display: block;
}
@media screen and (max-width: 800px) {
  .contents .inner .profile .photo img.pc {
    display: none;
  }
}
.contents .inner .profile .photo img.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .contents .inner .profile .photo img.sp {
    display: block;
  }
}
.contents .inner .profile .data {
  width: 80%;
  padding: 40px;
  padding-top: 200px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .contents .inner .profile .data {
    width: 100%;
    padding: 20px;
    padding-top: 50vw;
  }
}
.contents .inner .profile .data .item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .contents .inner .profile .data .item {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }
}
.contents .inner .profile .data .item h2 {
  font-size: 16px;
  width: 100px;
  text-align: center;
  background: #000;
  text-align: center;
  line-height: 1;
  padding: 0.5em 0.2em 0.6em;
  color: #fff;
}
.contents .inner .profile .data .item .txt {
  flex: 1;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}
.contents .inner .profile .data .item .txt p {
  background: rgba(255, 255, 255, 0.7);
  display: inline;
}
.contents .inner .profile .data .item .txt .follower {
  display: flex;
  align-items: center;
  font-size: 40px;
  gap: 1em;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .contents .inner .profile .data .item .txt .follower {
    padding-top: 20px;
    flex-direction: column;
    gap: 0.5em;
  }
}
.contents .inner .profile .data .item .txt .follower .box {
  display: flex;
  align-items: center;
  gap: 0.2em;
}
.contents .inner .profile .data .item .txt .follower .box img {
  width: 1.2em;
}
.contents .inner .profile .data .item .txt .follower .box span {
  font-weight: 900;
  font-style: italic;
}
.contents .inner .profile .data .item .txt .follower .box span small {
  font-style: normal;
  font-weight: 700;
  font-size: 0.7em;
}
.contents .inner .service {
  position: relative;
  padding: 40px;
}
@media screen and (max-width: 1000px) {
  .contents .inner .service {
    padding: 10px;
  }
}
.contents .inner .service h2 {
  text-align: center;
  margin-bottom: 20px;
}
.contents .inner .service h2 img {
  width: 80%;
}
@media screen and (max-width: 1000px) {
  .contents .inner .service h2 img {
    width: 90%;
  }
}
.contents .inner .service .service_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1000px) {
  .contents .inner .service .service_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contents .inner .service .service_list .item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border: solid 2px #000;
  padding: 20px;
  gap: 15px;
}
.contents .inner .service .service_list .item .txt h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 22px;
}
.contents .inner .service .service_list .item .txt h3 span {
  padding: 0 0.4em 0 0.6em;
  position: relative;
}
.contents .inner .service .service_list .item .txt h3::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 1.2em;
  background: #E6216E;
  position: absolute;
  top: 0.2em;
  left: -0.2em;
}
.contents .inner .service .service_list .item .txt h3::before {
  content: "";
  display: block;
  width: 100%;
  height: 1em;
  background: #fff;
  position: absolute;
  top: 0.6em;
}
.contents .inner .service .service_list .item .txt p {
  font-weight: 500;
  line-height: 1.8;
}
.contents .inner .service .service_list .item .txt .price {
  font-size: 28px;
  font-weight: 700;
  padding-top: 1em;
  display: inline-block;
  border-bottom: solid 2px #000;
}
.contents .inner .service .service_list .item img {
  width: 80px;
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .contents .inner .service .service_list .item img {
    display: none;
  }
}

.work {
  padding: 80px 15px;
  background-image: url("../img/work/bg.png");
  background-size: 400px;
  border-top: solid 2px #000;
}
@media screen and (max-width: 800px) {
  .work {
    background-size: 300px;
  }
}
.work .inner {
  max-width: 1000px;
  border: solid 2px #000;
  margin: 0 auto;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.work .inner .work_list h2 {
  padding: 20px 40px;
  text-align: center;
}
.work .inner .work_list h2 img {
  width: 300px;
}
@media screen and (max-width: 800px) {
  .work .inner .work_list h2 img {
    width: 80%;
  }
}
.work .inner .work_list ul {
  max-width: 600px;
  padding: 10px 10px 40px;
  margin: 0 auto;
}
.work .inner .work_list ul li {
  list-style: none;
  padding: 10px 0;
}
.work .inner .work_list ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  background: #EFEA3C;
  padding: 0.5em 0.5em 0.5em 1em;
  font-weight: 500;
}
.work .inner .work_list ul li a span {
  flex: 1;
}
.work .inner .work_list ul li a img {
  width: 2em;
}

footer {
  background: #1C1D1D;
}
footer .illust {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  transform: translateY(-60px);
}
@media screen and (max-width: 800px) {
  footer .illust {
    transform: translateY(-10vw);
  }
}
footer .illust img {
  width: 100%;
}

.single_activity {
  padding: 80px 15px;
  background-image: url("../img/work/bg.png");
  background-size: 400px;
  border-top: solid 2px #000;
}
@media screen and (max-width: 800px) {
  .single_activity {
    background-size: 300px;
  }
}
.single_activity .inner {
  max-width: 1000px;
  border: solid 2px #000;
  margin: 0 auto;
  padding: 60px 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.single_activity .inner .heading {
  padding: 20px 40px;
  text-align: center;
  border-bottom: solid 2px #000;
  margin-bottom: 40px;
}
.single_activity .inner .heading img {
  width: 200px;
}
@media screen and (max-width: 800px) {
  .single_activity .inner .heading img {
    width: 80%;
  }
}
.single_activity .inner h1 {
  text-align: center;
  margin-bottom: 1em;
}
.single_activity .inner article {
  max-width: 700px;
  margin: 0 auto;
}
.single_activity .inner article .txt {
  font-size: 18px;
  line-height: 1.8;
}
.single_activity .inner article .photo {
  padding: 20px 0;
  text-align: center;
}
.single_activity .inner article .photo img {
  max-width: 100%;
}
.single_activity .inner article .instagram {
  text-align: center;
  padding: 20px 0;
}
.single_activity .inner article .instagram iframe {
  max-width: 400px;
  aspect-ratio: 400/600;
  width: 100%;
}
.single_activity .inner article .tiktok {
  padding: 20px 0;
}
.single_activity .inner article .return {
  text-align: center;
  padding-top: 60px;
}
.single_activity .inner article .return a {
  display: inline-block;
  padding: 0.5em 2em;
  background: #EFEA3C;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.page_contact {
  padding: 80px 15px;
  background-image: url("../img/work/bg.png");
  background-size: 400px;
  border-top: solid 2px #000;
}
@media screen and (max-width: 800px) {
  .page_contact {
    background-size: 300px;
  }
}
.page_contact .inner {
  max-width: 1000px;
  margin: 0 auto;
  border: solid 2px #000;
  padding: 60px 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.page_contact .inner .txt {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 40px;
  line-height: 1.6;
}
.page_contact .inner .txt h2,
.page_contact .inner .txt h3 {
  padding-top: 1em;
}
.page_contact .inner .wpcf7.no-js {
  display: block;
}
.page_contact .inner .wpcf7 .screen-reader-response {
  display: none;
}
.page_contact .inner .wpcf7 .wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
}
.page_contact .inner .wpcf7 .wpcf7-form .item {
  margin-bottom: 20px;
}
.page_contact .inner .wpcf7 .wpcf7-form .item .title {
  font-weight: bold;
  margin-bottom: 5px;
}
.page_contact .inner .wpcf7 .wpcf7-form .item .title p {
  font-size: 16px;
}
.page_contact .inner .wpcf7 .wpcf7-form .item .title .required {
  color: red;
  padding-left: 5px;
  font-size: 0.8em;
}
.page_contact .inner .wpcf7 .wpcf7-form .item .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.page_contact .inner .wpcf7 .wpcf7-form .item input[type=text],
.page_contact .inner .wpcf7 .wpcf7-form .item input[type=email],
.page_contact .inner .wpcf7 .wpcf7-form .item input[type=tel],
.page_contact .inner .wpcf7 .wpcf7-form .item textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
  margin-top: 5px;
}
.page_contact .inner .wpcf7 .wpcf7-form .item input[type=text]:focus,
.page_contact .inner .wpcf7 .wpcf7-form .item input[type=email]:focus,
.page_contact .inner .wpcf7 .wpcf7-form .item input[type=tel]:focus,
.page_contact .inner .wpcf7 .wpcf7-form .item textarea:focus {
  border-color: #0056b3;
  outline: none;
}
.page_contact .inner .wpcf7 .wpcf7-form .item textarea {
  resize: vertical;
}
.page_contact .inner .wpcf7 .wpcf7-form .item .wpcf7-checkbox {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.page_contact .inner .wpcf7 .wpcf7-form .item .wpcf7-checkbox .wpcf7-list-item {
  margin-right: 15px;
  margin-bottom: 10px;
}
.page_contact .inner .wpcf7 .wpcf7-form .item .wpcf7-checkbox .wpcf7-list-item label {
  font-size: 16px;
}
.page_contact .inner .wpcf7 .wpcf7-form .item .wpcf7-checkbox .wpcf7-list-item label input {
  margin-right: 5px;
}
.page_contact .inner .wpcf7 .wpcf7-form .btn {
  text-align: center;
}
.page_contact .inner .wpcf7 .wpcf7-form .btn input[type=submit] {
  background-color: #EFEA3C;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
}
.page_contact .inner .wpcf7-response-output {
  padding: 10px;
  margin-top: 20px;
  font-size: 16px;
  background-color: #e9ecef;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #555;
}/*# sourceMappingURL=style.css.map */