@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
:root {
  --noto: "Noto Sans JP", sans-serif;
  --dera: "Dela Gothic One", sans-serif;
  --pink:#FF1493;
  --pink2:#FE5268;
  --black:#383838;
  font-family: var(--noto);
  color: #000;
  line-height: 1.875;
  font-size: 10px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: #fff;
  opacity: 0;
}
body.loaded {
  opacity: 1;
  transition: opacity 0.5s ease;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #000;
}

ul, ol {
  list-style: none;
}

p {
  font-size: 16px;
}

@media screen and (max-width: 1200px) {
  html {
    scroll-padding-top: 60px;
  }
}
header {
  display: flex;
  justify-content: space-between;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  align-items: center;
  padding: 0 0 0 30px;
  z-index: 1000;
}

.header__nav {
  display: flex;
  gap: 30px;
  height: 100%;
}

.header__nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
}
.header__nav-list li a {
  font-size: 16px;
  font-family: var(--dera);
  color: #000;
}

.header__nav-link02 {
  width: 200px;
  background-color: var(--pink);
  color: #fff;
  font-family: var(--dera);
  font-size: 1.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.header__nav-link02 .icon-mail {
  background-image: url(../img/coding/plane.svg);
  width: 26px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-right: 8px;
}

#ham {
  display: none;
}

.logo {
  width: 336px;
}

#sp-menu {
  display: none;
}

@media screen and (max-width: 1200px) {
  .header__nav {
    display: none;
  }
  #ham {
    display: block;
    width: 30px;
    height: 30px;
    position: fixed;
    top: 15px;
    right: 15px;
  }
  #ham .ham {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }
  #ham .ham .ham__line {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--pink);
    transition: all 0.3s ease-in-out;
    display: block;
  }
  #ham .ham .ham__line:nth-child(1) {
    top: 5px;
  }
  #ham .ham .ham__line:nth-child(2) {
    top: 15px;
  }
  #ham .ham .ham__line:nth-child(3) {
    top: 25px;
  }
  #ham.active .ham__line:nth-child(1) {
    transform: rotate(45deg);
    top: 15px;
  }
  #ham.active .ham__line:nth-child(2) {
    opacity: 0;
  }
  #ham.active .ham__line:nth-child(3) {
    transform: rotate(-45deg);
    top: 15px;
  }
  header {
    padding: 0 60px 0 10px;
    height: 60px;
  }
  .logo {
    width: 250px;
  }
  #sp-menu {
    display: block;
    position: fixed;
    top: -102vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--pink2);
    z-index: 999;
    transition: all 0.7s ease-in-out;
    overflow: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
  }
  #sp-menu::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }
  #sp-menu.active {
    top: 0;
  }
  .sp-menu__wrapper {
    width: 100%;
    background-color: var(--pink2);
    padding: 100px 30px;
  }
  .sp-menu__nav-list li {
    margin-bottom: 20px;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .sp-menu__nav-list li a {
    font-size: 2.4rem;
    font-family: var(--dera);
    color: #fff;
    letter-spacing: 2px;
  }
  .sp-menu__contact-link {
    width: 250px;
    background-color: #fff;
    color: var(--pink);
    font-family: var(--dera);
    font-size: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    border-radius: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
  .sp-menu__contact-link .icon-mail {
    background-image: url(../img/coding/plane-pink.svg);
    width: 26px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    margin-right: 8px;
  }
}
#contact-sec {
  padding-bottom: 100px;
}

.contact__main-ttl .txt::before {
  width: 487px;
  aspect-ratio: 487/144;
  background-image: url(../img/contact/ttl.svg);
  transform: translate(-45%, -50%);
}

.contact__step {
  display: flex;
  position: relative;
  width: 240px;
  justify-content: space-between;
  margin: 0 auto 60px;
}
.contact__step::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #dddddd;
  z-index: -1;
}
.contact__step li .num {
  width: 70px;
  height: 70px;
  background-color: #dddddd;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.6rem;
  font-family: Helvetica, Verdana, sans-serif;
  margin-bottom: 15px;
}
.contact__step li .txt {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #969696;
  display: block;
}
.contact__step li.active .num {
  background-color: #acd6dd;
  color: #000000;
}
.contact__step li.active .txt {
  color: #000;
}

.contact__main-txt {
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.5;
}

.contact__caution-list {
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
}
.contact__caution-list li {
  position: relative;
  padding-left: 1em;
  font-size: 1.6rem;
  line-height: 2;
}
.contact__caution-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.contact__cont-line {
  margin: 50px auto;
  height: 1px;
  background-color: #ccc;
}

.contact__table {
  display: flex;
  flex-wrap: wrap;
}
.contact__table dt {
  width: 350px;
  padding: 25px 0;
  position: relative;
  min-height: 91px;
}
.contact__table dt > P {
  font-size: 1.8rem;
  padding-top: 6px;
  font-weight: 500;
}
.contact__table dt .require-txt {
  top: 39px;
  right: 20px;
  position: absolute;
  font-size: 1.2rem;
  color: #fff;
  background: #CF1010;
  display: inline-block;
  padding: 0 13px 1px;
  border-radius: 2px;
}
.contact__table dt .non-require-txt {
  position: absolute;
  font-size: 1.2rem;
  color: #fff;
  background: #969696;
  display: inline-block;
  padding: 0 12px 1px;
  border-radius: 2px;
  top: 39px;
  right: 20px;
}
.contact__table dd {
  min-height: 91px;
  width: calc(100% - 350px);
  padding: 25px 0;
  position: relative;
}
.contact__table dd input[type=text], .contact__table dd input[type=email], .contact__table dd input[type=tel], .contact__table dd textarea {
  width: 100%;
  padding: 12px 10px;
  font-size: 18px;
  border: none;
  background: #fff;
  line-height: 1.6;
}
.contact__table dd textarea {
  height: 300px;
  resize: none;
}

.address-flex {
  margin-bottom: 28px;
}
.address-flex p {
  display: flex;
  gap: 15px;
  align-items: center;
}

.zip1 {
  width: 120px !important;
}

.zip2 {
  width: 160px !important;
}

.address-txt {
  font-size: 1.5rem;
}
.address-txt.p2 {
  width: 10px;
  height: 1px;
  background: #000;
  display: block;
}

#zip-button {
  font-size: 1.5rem;
  font-weight: bold;
  border: 2px solid #000;
  background: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
}

input[type=radio] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.8rem;
  margin-right: 17px;
}

span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  background-color: #fff;
  width: 27px;
  height: 27px;
  margin-right: 10px;
}

span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 17px;
  height: 17px;
  background-color: var(--black);
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

input[type=radio]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

span[data-name=radio-orf], span[data-name=radio-subject] {
  display: inline-block;
  transform: translateY(-21px);
}

.privacy-slide-bl {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #fff;
  padding: 50px;
  height: 400px;
  overflow-y: scroll;
  margin-top: 60px;
  scrollbar-width: 16px;
  scrollbar-color: #fff;
  background: #fff;
}
.privacy-slide-bl p {
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 30px;
  line-height: 1.8;
}
.privacy-slide-bl p.privacy-name-txt {
  margin-bottom: 15px;
}
.privacy-slide-bl::-webkit-scrollbar-thumb {
  background-color: #eeeeee;
  border-radius: 8px;
  border: 5px solid #fff;
}
.privacy-slide-bl::-webkit-scrollbar-track {
  background-color: #fff;
}
.privacy-slide-bl::-webkit-scrollbar {
  width: 16px;
}

.privacy-ttl {
  font-weight: 900;
  padding: 8px 20px 5px;
  font-size: 2.8rem;
  margin-bottom: 35px;
  line-height: 1.6;
  text-align: center;
}

.privacy-ttl-middle {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: var(--noto);
}

.privacy-list {
  margin-bottom: 30px;
}
.privacy-list li {
  position: relative;
  padding-left: 1.8em;
}
.privacy-list li::before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: var(--black);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 11px;
}
.privacy-list li p {
  margin-bottom: 0;
}

input[type=submit] {
  background: #000;
  border: none;
  color: #fff;
  width: 240px;
  height: 60px;
  border-radius: 60px;
  font-size: 17px;
  margin: 50px auto 0;
  display: block;
  font-weight: bold;
}

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び */
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0;
}

.cf7__list dd .wpcf7-list-item:nth-child(n+2) {
  margin-top: 18px;
}

.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}

input[type=checkbox] {
  position: relative;
  margin-top: 9px;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  background-color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=radio] {
  position: relative;
  margin-top: 9px;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked {
  border: 1px solid var(--pink);
  background: var(--pink);
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 5px;
  transform: rotate(50deg);
  width: 7px;
  height: 11px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: "";
}

#privacy-policy-checkbox span.wpcf7-list-item-label::before {
  display: none;
}

.privacy-label {
  display: flex;
}

span[data-name=privacy-check] {
  margin: 30px auto 0;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
span[data-name=privacy-check] .wpcf7-list-item-label::before {
  display: none;
}
span[data-name=privacy-check] .wpcf7-list-item label {
  display: flex;
  justify-content: center;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-not-valid-tip {
  font-size: 14px !important;
  position: absolute;
  bottom: -26px;
  color: #CF1010;
  left: 0;
}

/* 送信完了ページ */
.thanks__txt {
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 70px;
  line-height: 1.6;
}

.thanks__btn {
  background: #ff1493;
  border: none;
  color: #fff;
  width: 290px;
  height: 60px;
  border-radius: 60px;
  font-size: 17px;
  font-weight: bold;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wpcf7 form .wpcf7-response-output {
  padding: 0.8em 1em 0.6em;
}

.coding-thanks-page {
  background-color: #F0EEFF;
}
.coding-thanks-page main {
  padding-top: 120px;
}

.coding-thanks-img {
  width: 100px;
  margin: 0 auto 30px;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 1.6rem;
  text-align: center;
  border: 4px solid red;
  margin-top: 30px;
}

.sent-bl {
  display: none;
}

.sent .contact__caution-list {
  display: none;
}
.sent .contact__table {
  display: none;
}
.sent .sent-bl {
  display: block;
}
.sent .privacy-slide-bl {
  display: none;
}
.sent .privacy-slide-bl + p {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

@media (max-width: 1200px) {
  .contact__main-ttl .txt::before {
    width: 358px;
    transform: translate(-42%, -50%);
  }
}
@media (max-width: 834px) {
  .contact__table dt {
    width: 100%;
    padding: 20px 0 11px;
    position: relative;
    min-height: auto;
  }
  .contact__table dd {
    min-height: initial;
    width: 100%;
    padding: 0 0 20px;
    border-bottom: 1px solid #ccc;
  }
  .contact__table dt > P {
    padding-top: 0;
  }
  .contact__table dt .require-txt {
    top: 25px;
    right: auto;
    font-size: 1.2rem;
    padding: 0px 9px;
    margin-left: 11px;
  }
  .contact__table dt .non-require-txt {
    top: 25px;
    right: auto;
    font-size: 1.2rem;
    padding: 0px 9px;
    margin-left: 11px;
  }
  .address-flex p {
    gap: 7px;
  }
  .zip1 {
    width: 70px !important;
  }
  .zip2 {
    width: 90px !important;
  }
  #zip-button {
    font-size: 1.3rem;
    padding: 8px 12px;
  }
  .privacy-slide-bl {
    padding: 25px 10px 25px 20px;
    margin-top: 30px;
  }
  .privacy-ttl {
    padding: 8px 10px 5px;
    font-size: 1.9rem;
    margin-bottom: 15px;
  }
  .privacy-slide-bl p {
    margin-bottom: 25px;
    font-size: 1.5rem;
  }
  .privacy-ttl-middle {
    font-size: 1.7rem;
  }
  input[type=submit] {
    margin: 15px auto 0;
  }
  .contact__table dd input[type=text], .contact__table dd input[type=email], .contact__table dd input[type=tel], .contact__table dd textarea {
    margin-top: 3px;
    font-size: 16px;
  }
  input[type=radio] + .wpcf7-list-item-label {
    font-size: 1.6rem;
  }
  .wpcf7-radio .wpcf7-list-item {
    display: block;
    margin: 0;
  }
  .wpcf7-not-valid-tip {
    font-size: 11px !important;
    white-space: nowrap;
  }
  input[type=submit] {
    width: 200px;
  }
  .contact__step {
    width: 150px;
    margin: 0 auto 30px;
  }
  .contact__step::after {
    top: 25px;
  }
  .contact__step li .txt {
    font-size: 1.4rem;
  }
  .contact__step li .num {
    width: 50px;
    height: 50px;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .contact__main-txt {
    font-size: 1.9rem;
  }
  .contact__cont-line {
    margin: 30px auto 20px;
  }
  .contact__main-ttl .txt::before {
    width: 251px;
    transform: translate(-41%, -50%);
  }
  .contact__table dt > P {
    font-size: 1.6rem;
  }
  input[type=radio] {
    width: 0;
    height: 0;
    margin-top: 0;
  }
  .wpcf7-not-valid-tip {
    bottom: -20px;
  }
  .privacy-list li::before {
    top: 8px;
  }
  .coding-thanks-page main {
    padding-top: 60px;
  }
  .coding-thanks-page #contact-sec {
    padding-bottom: 80px;
  }
  span.wpcf7-list-item-label {
    font-size: 1.6rem;
  }
  input[type=checkbox] {
    margin-top: 7px;
  }
  .contact__caution-list {
    margin-bottom: 40px;
  }
}
.js-fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}
.js-fadeUp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-list {
  overflow: hidden;
}
.js-list li {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s ease-in-out;
}
.js-list li.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.js-list2 li {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}
.js-list2 li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nyu {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.nyu .nyu-in {
  display: block;
  position: absolute;
  bottom: -105%;
  left: 0;
  animation: nyu 1s ease forwards;
  width: 100%;
}
.nyu.delay1000 .nyu-in {
  animation-delay: 1.5s;
}

@keyframes nyu {
  0% {
    bottom: -120%;
  }
  100% {
    bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */