@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
}
@font-face {
  font-family: "notosansjp";
  font-weight: 400;
  src: url(../fonts/NotoSansJP-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "notosansjp";
  font-weight: 500;
  src: url(../fonts/NotoSansJP-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "notosansjp";
  font-weight: 600;
  src: url(../fonts/NotoSansJP-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: "notosansjp";
  font-weight: 700;
  src: url(../fonts/NotoSansJP-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "notosansjp";
  font-weight: 900;
  src: url(../fonts/NotoSansJP-Black.ttf) format("truetype");
}
@font-face {
  font-family: "Lato";
  font-weight: 400;
  src: url(../fonts/Lato-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Lato";
  font-weight: 700;
  src: url(../fonts/Lato-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 700;
  src: url(../fonts/Lato-BoldItalic.ttf) format("truetype");
}
@font-face {
  font-family: "ZenKakuGothicAntique";
  font-weight: 400;
  src: url(../fonts/ZenKakuGothicAntique-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "ZenKakuGothicAntique";
  font-weight: 500;
  src: url(../fonts/ZenKakuGothicAntique-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "ZenKakuGothicAntique";
  font-weight: 700;
  src: url(../fonts/ZenKakuGothicAntique-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "ZenKakuGothicAntique";
  font-weight: 900;
  src: url(../fonts/ZenKakuGothicAntique-Black.ttf) format("truetype");
}
body {
  position: relative;
  font-family: "notosansjp", sans-serif;
  line-height: 1.5;
  color: #333333;
}
body.no_scroll {
  overflow: hidden;
}

.ja {
  font-family: "ZenKakuGothicAntique", sans-serif;
}

.en {
  font-family: "Lato", sans-serif;
}

a {
  color: #333333;
}

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

.none {
  display: none;
}

.relative {
  position: relative;
}

.hidden {
  position: relative;
  overflow: hidden;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-w {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex-c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-cc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
}

.flex-cw {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex-sb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .hover:hover {
    opacity: 0.6;
  }
}

.bg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
}
.bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.maker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #ffed60));
  background: -webkit-linear-gradient(transparent 70%, #ffed60 70%);
  background: linear-gradient(transparent 70%, #ffed60 70%);
}

.section {
  position: relative;
}

.inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.inner-s {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1921px) {
  .inner {
    max-width: 1395px;
    padding: 0 22.5px;
  }
  .inner-s {
    max-width: 1057.5px;
    padding: 0 22.5px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .inner {
    max-width: 95.3846153846vw;
    padding: 0 1.5384615385vw;
  }
  .inner-s {
    max-width: 72.3076923077vw;
    padding: 0 1.5384615385vw;
  }
}
@media (max-width: 768px) {
  .inner {
    max-width: 330.6666666667vw;
    padding: 0 6.6666666667vw;
  }
  .inner-s {
    max-width: 250.6666666667vw;
    padding: 0 6.6666666667vw;
  }
}
:root {
  --blue: #367dff;
  --pink: #F864AF;
  --shadow: #0c437f;
}

.main {
  position: relative;
  z-index: 2;
}

.mainBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mainBg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.topSub {
  margin-bottom: 11px;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  color: #f864af;
}

.topTtl {
  font-family: "ZenKakuGothicAntique", serif;
  font-size: 40px;
  line-height: 1.45;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 1921px) {
  .topSub {
    margin-bottom: 12.375px;
    font-size: 22.5px;
  }
  .topTtl {
    font-size: 45px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .topSub {
    margin-bottom: 0.8461538462vw;
    font-size: 1.5384615385vw;
  }
  .topTtl {
    font-size: 3.0769230769vw;
  }
}
@media (max-width: 768px) {
  .topSub {
    margin-bottom: 1.6vw;
    font-size: 4.5333333333vw;
  }
  .topTtl {
    font-size: 6.1333333333vw;
  }
}
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1200px;
  width: 100%;
  height: 80px;
  border-radius: 40px;
  background: #fff;
  z-index: 10;
  -webkit-box-shadow: 0 0 60px 5px rgba(255, 234, 244, 0.65);
          box-shadow: 0 0 60px 5px rgba(255, 234, 244, 0.65);
}

.header__inner {
  width: 100%;
  padding: 0 14px 0 37px;
}

.header__logo {
  display: block;
  width: 192px;
}

.header__nav {
  gap: 20px;
}

.header__menu {
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
}

.header__btn {
  position: relative;
  width: 197px;
  height: 60px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__btn::before, .header__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.header__btn::before {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: -1;
  background: -webkit-linear-gradient(315deg, #f854a8 0%, #ba48d5 100%);
  background: linear-gradient(135deg, #f854a8 0%, #ba48d5 100%);
}
.header__btn::after {
  z-index: -2;
  background: -webkit-linear-gradient(315deg, #ba48d5 0%, #273990 100%);
  background: linear-gradient(135deg, #ba48d5 0%, #273990 100%);
}
.header__btn:hover::before {
  opacity: 0;
}

.header__spBtn {
  display: none;
}

.headerSp__nav {
  display: none;
}

@media (min-width: 1921px) {
  .header {
    top: 22.5px;
    max-width: 1350px;
    height: 90px;
    border-radius: 45px;
    -webkit-box-shadow: 0 0 67.5px 5.625px rgba(255, 234, 244, 0.65);
            box-shadow: 0 0 67.5px 5.625px rgba(255, 234, 244, 0.65);
  }
  .header__inner {
    padding: 0 15.75px 0 41.625px;
  }
  .header__logo {
    width: 216px;
  }
  .header__nav {
    gap: 22.5px;
  }
  .header__menu {
    gap: 18px;
    font-size: 16.875px;
  }
  .header__btn {
    width: 221.625px;
    height: 67.5px;
    border-radius: 33.75px;
    font-size: 16.875px;
  }
  .header__btn::before, .header__btn::after {
    border-radius: 33.75px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .header {
    top: 1.5384615385vw;
    max-width: 92.3076923077vw;
    height: 6.1538461538vw;
    border-radius: 3.0769230769vw;
    -webkit-box-shadow: 0 0 4.6153846154vw 0.3846153846vw rgba(255, 234, 244, 0.65);
            box-shadow: 0 0 4.6153846154vw 0.3846153846vw rgba(255, 234, 244, 0.65);
  }
  .header__inner {
    padding: 0 1.0769230769vw 0 2.8461538462vw;
  }
  .header__logo {
    width: 14.7692307692vw;
  }
  .header__nav {
    gap: 1.5384615385vw;
  }
  .header__menu {
    gap: 1.2307692308vw;
    font-size: 1.1538461538vw;
  }
  .header__btn {
    width: 15.1538461538vw;
    height: 4.6153846154vw;
    border-radius: 2.3076923077vw;
    font-size: 1.1538461538vw;
  }
  .header__btn::before, .header__btn::after {
    border-radius: 2.3076923077vw;
  }
}
@media (max-width: 768px) {
  .header {
    top: 4.5333333333vw;
    max-width: 94.6666666667vw;
    height: 16vw;
    border-radius: 10.6666666667vw;
    -webkit-box-shadow: 0 0 16vw 1.3333333333vw rgba(255, 234, 244, 0.65);
            box-shadow: 0 0 16vw 1.3333333333vw rgba(255, 234, 244, 0.65);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header.hide {
    -webkit-transform: translate(-50%, -90px);
            transform: translate(-50%, -90px);
  }
  .header__inner {
    padding: 0 2.6666666667vw 0 5.3333333333vw;
  }
  .header__logo {
    width: 28.8vw;
    height: 4.5333333333vw;
  }
  .header__nav {
    display: none;
  }
  .header__spBtn {
    display: block;
    width: 12vw;
    height: 12vw;
  }
  .header__spBtn.open .header__spBtn--close {
    display: block;
  }
  .header__spBtn.open .header__spBtn--open {
    display: none;
  }
  .header__spBtn--close {
    display: none;
  }
  .headerSp__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/common/header_sp_bg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 9;
  }
  .headerSP__wrap {
    padding-bottom: 10.6666666667vw;
  }
  .headerSP__link {
    margin-top: 34.6666666667vw;
    font-size: 4.8vw;
    font-weight: bold;
    text-align: center;
  }
  .headerSP__link a {
    display: block;
    margin-top: 8vw;
  }
  .headerSP__link a.headerSp__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 73.3333333333vw;
    height: 17.8666666667vw;
    margin: 10.6666666667vw auto 0;
    border-radius: 15.4666666667vw;
    font-size: 4.2666666667vw;
    font-weight: bold;
    color: #fff;
    background: -webkit-linear-gradient(315deg, #f864af 0%, #ba48d5 100%);
    background: linear-gradient(135deg, #f864af 0%, #ba48d5 100%);
    -webkit-box-shadow: 0 0 1.6vw 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 1.6vw 0 rgba(0, 0, 0, 0.2);
  }
}
.footer {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #333333;
}

.footer__hd {
  padding-bottom: 37px;
  border-bottom: 1px solid #fff;
}

.footer__logo {
  display: block;
  width: 174px;
}

.footer__links {
  gap: 20px;
}

.footer__link {
  font-size: 15px;
  color: #fff;
}

.footer__flex {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 40px;
}

.footer__hp {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.footer__hp .icon {
  width: 17px;
  height: 13px;
  margin-left: 6px;
}

.footer__company--txt {
  margin-top: 6px;
  font-size: 13px;
  color: #fff;
}

.footer__copy {
  gap: 50px;
  font-size: 14px;
  color: #fff;
}

.footer__policy {
  font-size: 14px;
  color: #fff;
}
.footer__policy .icon {
  width: 17px;
  height: 13px;
  margin-left: 6px;
}

@media (min-width: 1921px) {
  .footer {
    padding-top: 67.5px;
    padding-bottom: 67.5px;
  }
  .footer__hd {
    padding-bottom: 41.625px;
  }
  .footer__logo {
    width: 195.75px;
  }
  .footer__links {
    gap: 22.5px;
  }
  .footer__link {
    font-size: 16.875px;
  }
  .footer__flex {
    padding-top: 45px;
  }
  .footer__hp {
    font-size: 20.25px;
  }
  .footer__hp .icon {
    width: 19.125px;
    height: 14.625px;
    margin-left: 6.75px;
  }
  .footer__company--txt {
    margin-top: 6.75px;
    font-size: 14.625px;
  }
  .footer__copy {
    gap: 56.25px;
    font-size: 15.75px;
  }
  .footer__policy {
    font-size: 15.75px;
  }
  .footer__policy .icon {
    width: 19.125px;
    height: 14.625px;
    margin-left: 6.75px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .footer {
    padding-top: 4.6153846154vw;
    padding-bottom: 4.6153846154vw;
  }
  .footer__hd {
    padding-bottom: 2.8461538462vw;
  }
  .footer__logo {
    width: 13.3846153846vw;
  }
  .footer__links {
    gap: 1.5384615385vw;
  }
  .footer__link {
    font-size: 1.1538461538vw;
  }
  .footer__flex {
    padding-top: 3.0769230769vw;
  }
  .footer__hp {
    font-size: 1.3846153846vw;
  }
  .footer__hp .icon {
    width: 1.3076923077vw;
    height: 1vw;
    margin-left: 0.4615384615vw;
  }
  .footer__company--txt {
    margin-top: 0.4615384615vw;
    font-size: 1vw;
  }
  .footer__copy {
    gap: 3.8461538462vw;
    font-size: 1.0769230769vw;
  }
  .footer__policy {
    font-size: 1.0769230769vw;
  }
  .footer__policy .icon {
    width: 1.3076923077vw;
    height: 1vw;
    margin-left: 0.4615384615vw;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-top: 16vw;
    padding-bottom: 10.6666666667vw;
  }
  .footer__hd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5.6vw;
    padding-bottom: 10.6666666667vw;
  }
  .footer__logo {
    width: 29.8666666667vw;
    height: 8.5333333333vw;
  }
  .footer__links {
    gap: 2.6666666667vw 20vw;
  }
  .footer__link {
    width: 26.6666666667vw;
    font-size: 4.2666666667vw;
  }
  .footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 13.3333333333vw;
    padding-top: 5.3333333333vw;
  }
  .footer__hp {
    font-size: 4.2666666667vw;
  }
  .footer__hp .icon {
    width: 4vw;
    height: 3.2vw;
    margin-left: 1.6vw;
  }
  .footer__company--txt {
    margin-top: 1.6vw;
    font-size: 3.2vw;
  }
  .footer__copy {
    gap: 16vw;
    font-size: 3.7333333333vw;
  }
  .footer__policy {
    font-size: 3.7333333333vw;
  }
  .footer__policy .icon {
    width: 4.5333333333vw;
    height: 3.4666666667vw;
    margin-left: 1.6vw;
  }
}
.cv {
  padding-top: 70px;
  padding-bottom: 60px;
}

.cvIcon {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1121px;
}

.cvTtl {
  font-size: 39px;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.cvTxt {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
  color: #fff;
}

.cvBtn {
  width: 418px;
  height: 80px;
  margin: 32px auto 0;
  border-radius: 58px;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  background: #283990;
}

@media (min-width: 1921px) {
  .cv {
    padding-top: 78.75px;
    padding-bottom: 67.5px;
  }
  .cvIcon {
    width: 1261.125px;
  }
  .cvTtl {
    font-size: 43.875px;
  }
  .cvTxt {
    margin-top: 22.5px;
    font-size: 18px;
  }
  .cvBtn {
    width: 470.25px;
    height: 90px;
    margin: 36px auto 0;
    border-radius: 65.25px;
    font-size: 29.25px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .cv {
    padding-top: 5.3846153846vw;
    padding-bottom: 4.6153846154vw;
  }
  .cvIcon {
    width: 86.2307692308vw;
  }
  .cvTtl {
    font-size: 3vw;
  }
  .cvTxt {
    margin-top: 1.5384615385vw;
    font-size: 1.2307692308vw;
  }
  .cvBtn {
    width: 32.1538461538vw;
    height: 6.1538461538vw;
    margin: 2.4615384615vw auto 0;
    border-radius: 4.4615384615vw;
    font-size: 2vw;
  }
}
@media (max-width: 768px) {
  .cv {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .cvTtl {
    font-size: 25px;
    line-height: 1.44;
  }
  .cvTxt {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.75;
  }
  .cvBtn {
    width: 275px;
    height: 67px;
    margin: 30px auto 0;
    border-radius: 58px;
    font-size: 16px;
  }
}/*# sourceMappingURL=common.css.map */