@charset "UTF-8";
/*変数設定用*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&display=swap");
body {
  min-height: 100dvh;
  background-color: #E7F4FF;
}

.happymatch {
  font-family: "M PLUS Rounded 1c", serif;
  box-sizing: border-box;
}
.happymatch * {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .happymatch * {
    font-size: 14px;
  }
}
.happymatch .f-ttl {
  background-color: #30A1CE;
  padding: 30px 0;
  text-align: center;
}
.happymatch .f-ttl h2 {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  font-family: "M PLUS Rounded 1c", serif;
}
@media screen and (max-width: 767px) {
  .happymatch .f-ttl h2 {
    font-size: 22px;
  }
}
.happymatch .inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .happymatch .inner {
    max-width: 375px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 4% 37px;
    box-sizing: border-box;
  }
}
.happymatch button {
  transition: all 0.3s;
}
.happymatch button:hover {
  opacity: 0.8;
}
.happymatch.terms .inner {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .happymatch.terms .inner {
    line-height: 1.2857142857;
  }
}
.happymatch.terms .inner .lead-txt {
  color: #666;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .happymatch.terms .inner .lead-txt {
    line-height: 1.7142857143;
  }
}
.happymatch.terms .inner .bold-txt {
  font-weight: bold;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .happymatch.terms .inner .bold-txt {
    line-height: 1.7142857143;
  }
}
.happymatch.terms .inner .checkbox-wrap {
  margin-top: 30px;
}
.happymatch.terms .inner .checkbox-wrap .checkbox-content .checkbox-item {
  display: flex;
  gap: 1px;
}
.happymatch.terms .inner .checkbox-wrap .checkbox-content .checkbox-item input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 100%;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 3px;
  vertical-align: -5px;
  margin-right: 10px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 22px;
}
.happymatch.terms .inner .checkbox-wrap .checkbox-content .checkbox-item input[type=checkbox]:checked {
  background-color: #30A1CE;
  border: 2px solid #30A1CE;
}
.happymatch.terms .inner .checkbox-wrap .checkbox-content .checkbox-item input[type=checkbox]:checked::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  top: 1px;
  left: 6px;
  transform: rotate(50deg);
}
.happymatch.terms .inner .checkbox-wrap .checkbox-content:not(:first-of-type) {
  margin-top: 30px;
}
.happymatch.terms .inner .checkbox-wrap .checkbox-content .required-wrap {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 5px;
}
.happymatch.terms .inner .checkbox-wrap .checkbox-content .required-wrap .required-img {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 15px;
  height: 15px;
}
.happymatch.terms .inner .checkbox-wrap .checkbox-content .required-wrap .required-img img {
  height: 15px;
}
.happymatch.terms .inner .checkbox-wrap .checkbox-content .required-wrap .required-txt {
  font-weight: bold;
  color: #FF2524;
  font-size: 14px;
  line-height: 1.4285714286;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .happymatch.terms .inner .checkbox-wrap .checkbox-content .required-wrap .required-txt {
    font-size: 12px;
  }
}
.happymatch.terms .inner .list-wrap {
  margin-top: 30px;
}
.happymatch.terms .inner .list-wrap .list-content .list-item {
  line-height: 1.125;
  margin-top: 10px;
  display: flex;
  padding-left: 1.2rem;
  text-indent: -2rem;
}
.happymatch.terms .inner .btn-wrap {
  margin-top: 60px;
}
.happymatch.terms .inner .btn-wrap .btn-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 296px;
  position: relative;
  color: #fff;
  font-weight: bold;
  background-color: #30A1CE;
  border-radius: 49px;
  line-height: 1.4375;
  padding: 18px 0;
}
.happymatch.terms .inner .btn-wrap .btn-item::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 25px;
}
.happymatch.form {
  background-color: #E7F4FF;
  position: relative;
  height: auto;
}
.happymatch.form .modal-wrapper {
  width: 100dvw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 5;
  position: fixed;
}
.happymatch.form .modal-wrapper .modal-content {
  max-width: 800px;
  width: 100%;
  position: absolute;
  background-color: #fff;
  border-radius: 15px;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  padding: 2em 2em;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .happymatch.form .modal-wrapper .modal-content {
    max-width: 343px;
    width: 100%;
    padding: 35px 3.7% 30px;
  }
}
.happymatch.form .modal-wrapper .modal-content .batsu {
  position: absolute;
  top: 3.5%;
  right: 3.7%;
  display: block;
  width: 30px;
  height: 30px;
  background-color: #A0A0A1;
  border: none;
  border-radius: 50px;
}
.happymatch.form .modal-wrapper .modal-content .batsu::before,
.happymatch.form .modal-wrapper .modal-content .batsu::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  /* 棒の幅（太さ） */
  height: 15px;
  /* 棒の高さ */
  background: #fff;
}
.happymatch.form .modal-wrapper .modal-content .batsu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.happymatch.form .modal-wrapper .modal-content .batsu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.happymatch.form .modal-wrapper .modal-content .modal-item01 {
  position: relative;
}
.happymatch.form .modal-wrapper .modal-content .modal-item01 .m-ttl {
  font-size: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #B4B4B4;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .happymatch.form .modal-wrapper .modal-content .modal-item01 .m-ttl {
    font-size: 16px;
  }
}
.happymatch.form .modal-wrapper .modal-content .modal-item02 {
  overflow-y: scroll;
  height: calc(var(--vvh1) * 50);
  padding: 0.25em;
}
.happymatch.form .modal-wrapper .modal-content .modal-item02 .search-wrap {
  width: 100%;
  max-width: 740px;
  margin-top: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .happymatch.form .modal-wrapper .modal-content .modal-item02 .search-wrap {
    margin-top: 20px;
  }
}
.happymatch.form .modal-wrapper .modal-content .modal-item02 .search-wrap #m-textarea {
  max-width: 740px;
  width: 100%;
  border-radius: 16px;
  border: none;
  background-color: #F7F7F7;
  box-sizing: border-box;
  padding: 20px;
  height: 62px;
}
@media screen and (max-width: 767px) {
  .happymatch.form .modal-wrapper .modal-content .modal-item02 .search-wrap #m-textarea {
    padding: 9px;
    height: 39px;
  }
}
.happymatch.form .modal-wrapper .modal-content .modal-item02 .search-wrap .btn-wrap {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translate(0, -50%);
  appearance: none;
  border: none;
  background-color: #F7F7F7;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.happymatch.form .modal-wrapper .modal-content .modal-item02 .search-wrap .btn-wrap img {
  max-width: 24px;
  width: 100%;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .happymatch.form .modal-wrapper .modal-content .modal-item02 .search-wrap .btn-wrap img {
    max-width: 18px;
    width: 100%;
    height: 16px;
  }
}
.happymatch.form .modal-wrapper .modal-content .modal-item03 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 39px;
  margin-top: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .happymatch.form .modal-wrapper .modal-content .modal-item03 {
    margin-top: 20px;
  }
}
.happymatch.form .modal-wrapper .modal-content .modal-item03 .m-prof {
  width: calc((100% - 39px) / 2);
  display: flex;
  align-items: center;
  gap: 30px;
  border: none;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .happymatch.form .modal-wrapper .modal-content .modal-item03 .m-prof {
    gap: 20px;
    font-size: 14px;
    width: 100%;
  }
}
.happymatch.form .modal-wrapper .modal-content .modal-item03 .m-prof p {
  text-align: left;
  flex: 1 1 auto;
}
.happymatch.form .modal-wrapper .modal-content .modal-item03 .m-prof .modal-img {
  max-width: 100px;
  height: 100px;
  flex: 1 0 100px;
}
@media screen and (max-width: 767px) {
  .happymatch.form .modal-wrapper .modal-content .modal-item03 .m-prof .modal-img {
    height: 60px;
    max-width: 60px;
    flex: 1 0 60px;
  }
}
.happymatch.form .modal-wrapper .modal-content .modal-item03 .m-prof .modal-img img {
  width: 100%;
  border: 2px solid red;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.happymatch.form .p-ttl {
  width: 100%;
  padding: 23px 20px;
  box-sizing: border-box;
  background-color: #CFE5F8;
  font-size: 20px;
  font-weight: normal;
  border-radius: 6px;
  line-height: 1.2;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .happymatch.form .p-ttl {
    font-size: 16px;
    padding: 25px 20px;
    margin-top: 10px;
  }
}
.happymatch.form .p-ttl span {
  color: #DE4B4B;
}
.happymatch.form .required-wrap {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 5px;
}
.happymatch.form .required-wrap .required-img {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 15px;
}
.happymatch.form .required-wrap .required-img img {
  height: 15px;
  vertical-align: bottom;
}
.happymatch.form .required-wrap .required-txt {
  font-weight: bold;
  color: #FF2524;
  font-size: 14px;
  line-height: 1.4285714286;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .happymatch.form .required-wrap .required-txt {
    font-size: 12px;
  }
}
.happymatch.form ::-moz-placeholder {
  color: #999;
}
.happymatch.form ::placeholder {
  color: #999;
}
@media screen and (max-width: 767px) {
  .happymatch.form ::-moz-placeholder {
    font-size: 16px;
  }
  .happymatch.form ::placeholder {
    font-size: 16px;
  }
}
.happymatch.form .inner .myprof-wrap {
  border-radius: 6px;
}
.happymatch.form .inner .myprof-wrap .first {
  margin: 0;
}
.happymatch.form .inner .myprof-wrap .prof-content {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  background-color: #fff;
  gap: 20px;
  margin-top: 10px;
  vertical-align: top;
  padding: 30px;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .happymatch.form .inner .myprof-wrap .prof-content {
    padding: 20px;
    height: 152px;
  }
}
.happymatch.form .inner .myprof-wrap .prof-content .prof-img {
  flex: 0 0 100px;
}
@media screen and (max-width: 767px) {
  .happymatch.form .inner .myprof-wrap .prof-content .prof-img {
    flex-basis: 66px;
  }
}
.happymatch.form .inner .myprof-wrap .prof-content .prof-img img {
  width: 100%;
  border: 2px solid red;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.happymatch.form .inner .myprof-wrap .prof-content .prof-item {
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .happymatch.form .inner .myprof-wrap .prof-content .prof-item .prof-txt01 {
    font-size: 14px;
  }
}
.happymatch.form .inner .myprof-wrap .prof-content .prof-item .prof-txt02 {
  font-size: 14px;
  margin-top: 10px;
}
.happymatch.form .inner .myprof-wrap .prof-content .prof-item .prof-txt03 {
  font-size: 12px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .happymatch.form .inner .myprof-wrap .prof-content .prof-item .prof-txt03 {
    font-size: 10px;
  }
}
.happymatch.form .inner .yrprof-wrap .select-btn {
  width: 296px;
  background-color: #fff;
  color: #61ADCB;
  border-radius: 49px;
  border: 2px solid #61ADCB;
  margin: 20px auto 0;
  display: block;
  font-weight: bold;
  padding: 14px 0;
}
@media screen and (max-width: 767px) {
  .happymatch.form .inner .yrprof-wrap .select-btn {
    padding: 15.5px 0;
  }
}
@media screen and (max-width: 767px) {
  .happymatch.form .inner .yrprof-wrap .select-btn {
    margin-top: 10px;
  }
}
.happymatch.form .inner .category-wrap .select-content {
  position: relative;
}
.happymatch.form .inner .category-wrap .select-content .c-select {
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 20px;
  box-sizing: border-box;
  margin-top: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.happymatch.form .inner .category-wrap .select-content::after {
  position: absolute;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
  width: 7px;
  height: 7px;
  top: 50%;
  right: 2.5%;
  transform: rotate(43deg);
  border-radius: 1px;
}
.happymatch.form .inner .exchange-wrap #e-txt {
  width: 100%;
  border: none;
  margin-top: 10px;
  box-sizing: border-box;
  padding: 20px 20px;
  border-radius: 6px;
  resize: vertical;
  line-height: 1.7;
}
.happymatch.form .inner .txt-wrap #t-txt {
  width: 100%;
  border: none;
  margin-top: 10px;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 6px;
  resize: vertical;
  line-height: 1.7;
}
.happymatch.form .inner .photo-wrap .size {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .happymatch.form .inner .photo-wrap .size {
    font-size: 12px;
  }
}
.happymatch.form .inner .photo-wrap .img-wrap01 {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
  overflow: hidden;
}
.happymatch.form .inner .photo-wrap .img-wrap01 .img-content {
  flex: 0 0 30%;
  aspect-ratio: 1/1;
}
.happymatch.form .inner .photo-wrap .img-wrap01 .img-content .img-content-none {
  position: relative;
  border: 3px dotted #CCC;
  background-color: #fff;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.happymatch.form .inner .photo-wrap .img-wrap01 .img-content .img-content-none .img-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.happymatch.form .inner .photo-wrap .img-wrap01 .img-content .img-content-none .img-item img {
  max-width: 56px;
  width: 100%;
  height: 54px;
}
.happymatch.form .inner .photo-wrap .img-wrap01 .img-content .img-content-uploaded {
  position: relative;
  border: 3px dotted #CCC;
  background-color: #fff;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.happymatch.form .inner .photo-wrap .img-wrap01 .img-content .img-content-uploaded .img-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.happymatch.form .inner .photo-wrap .img-wrap01 .img-content .img-content-uploaded .btn_delete {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  width: 2em;
  height: 2em;
}
.happymatch.form .inner .photo-wrap .img-wrap01 .img-content-uploaded {
  position: relative;
  height: 253px;
  background-color: #fff;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .happymatch.form .inner .photo-wrap .img-wrap01 .img-content-uploaded {
    height: 100px;
  }
}
.happymatch.form .inner .photo-wrap .img-wrap01 .img-content-uploaded .img-item {
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.happymatch.form .inner .photo-wrap .img-wrap01 .img-content-uploaded .btn_delete {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  width: 2em;
  height: 2em;
}
.happymatch.form .inner .btn-wrap {
  margin-top: 40px;
}
.happymatch.form .inner .btn-wrap .btn-item {
  width: 296px;
  background-color: #30A1CE;
  color: #fff;
  border: none;
  border-radius: 49px;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  position: relative;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  .happymatch.form .inner .btn-wrap .btn-item {
    padding: 17.5px 0;
  }
}
.happymatch.form .inner .btn-wrap .btn-item::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 25px;
}
.happymatch.confirm .inner {
  max-width: 800px;
}
.happymatch.confirm .inner .exchange-wrap #e-txt02 {
  width: 100%;
  border: none;
  margin-top: 10px;
  box-sizing: border-box;
  padding: 20px 20px;
  border-radius: 6px;
  resize: vertical;
  background-color: #fff;
}
.happymatch.confirm .inner .txt-wrap #t-txt02 {
  width: 100%;
  border: none;
  margin-top: 10px;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 6px;
  resize: vertical;
  background-color: #fff;
}
.happymatch.confirm .inner .photo-wrap .img-wrap02 {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}
.happymatch.confirm .inner .photo-wrap .img-wrap02 .img-content01 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc((100% - 40px) / 3);
}
.happymatch.confirm .inner .photo-wrap .img-wrap02 .img-content01 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 20px;
}
.happymatch.confirm .inner .btn-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .happymatch.confirm .inner .btn-wrap {
    display: block;
    margin-top: 20px;
  }
}
.happymatch.confirm .inner .btn-wrap .btn-contentl .btn-iteml {
  width: 296px;
  background-color: #999;
  color: #fff;
  border: none;
  border-radius: 49px;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  position: relative;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  .happymatch.confirm .inner .btn-wrap .btn-contentl .btn-iteml {
    padding: 17.5px 0;
  }
}
.happymatch.confirm .inner .btn-wrap .btn-contentl .btn-iteml::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg) translateY(50%);
  top: 50%;
  left: 25px;
}
@media screen and (max-width: 767px) {
  .happymatch.confirm .inner .btn-wrap .btn-content {
    margin-top: 10px;
  }
}
.happymatch.complete {
  padding-bottom: 100px;
  background-color: #E7F4FF;
}
.happymatch.complete .inner {
  font-size: 16px;
}
.happymatch.complete .inner .comp-h2 {
  text-align: center;
  font-size: 24px;
  line-height: 1;
}
.happymatch.complete .inner .tnk {
  margin-top: 30px;
  line-height: 1.5;
}
.happymatch.complete .inner .chu-txt {
  font-size: 14px;
  margin-top: 30px;
  line-height: 1.4285714286;
}
.happymatch.complete .inner .btn-wrap {
  margin-top: 40px;
}
.happymatch.complete .inner .btn-wrap .btn-item {
  width: 296px;
  background-color: #30A1CE;
  color: #fff;
  border: none;
  border-radius: 49px;
  font-weight: bold;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .happymatch.complete .inner .btn-wrap .btn-item {
    padding: 21px 0;
  }
}
.happymatch.complete .inner .btn-wrap .btn-item::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 25px;
}/*# sourceMappingURL=happymatch.css.map */