@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;500;700;900&display=swap");
@import url("https://use.typekit.net/cby7ilb.css");
.spi {
  display: none;
}

@media screen and (max-width: 768px) {
  .spi {
    display: inline-block;
  }
}
.pci {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .pci {
    display: none;
  }
}
/*=================
Animation
=================*/
/*=================
Common Item
=================*/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  -webkit-font-feature-settings: palt;
          font-feature-settings: palt;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  color: #2F2E2E;
  position: relative;
  background: #F8F7F7;
  color: #000000;
}
@media screen and (max-width: 768px) {
  body {
    width: 100%;
    font-size: 1.3rem;
    width: 100vw;
    height: 100vh;
    animation: bugfix infinite 1s;
    -webkit-animation: bugfix infinite 1s;
  }
}

a:link, a:hover, a:visited {
  color: #000000;
  text-decoration: underline;
}

/*=================
Utility Class
=================*/
.u-sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-br {
    display: block;
  }
}

.u-pc-br {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pc-br {
    display: none;
  }
}

.u-pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-pc-none {
    display: block;
  }
}

.u-sp-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-sp-none {
    display: none;
  }
}

.u-ex {
  margin: 0.5em 0;
  line-height: 1.75;
  font-size: 1em;
  font-weight: 500;
}
.u-ex__center {
  line-height: 1.6;
  text-align: center !important;
}
.u-ex__right {
  text-align: right !important;
}
.u-ex-red, .u-ex-red__bold {
  color: #ff0000;
  line-height: 1.6;
}
.u-ex-red__bold {
  font-weight: bold;
}
.u-ex-red__center {
  text-align: center;
}

.u-ex a,
.u-ex__center a {
  text-decoration: underline;
}

a.ex_link {
  text-decoration: underline;
}

.u-font__en {
  font-family: english-grotesque, sans-serif;
  font-weight: 300;
}

.u-exbox {
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #767676;
}

.u-mb1 {
  margin-bottom: 1em;
}

.u-mb2 {
  margin-bottom: 2em;
}

.u-mt1 {
  margin-top: 1em;
}

/*=================
Common Anime
=================*/
.animebg {
  position: relative;
}
.animebg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.animebg.on::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.sp-menu {
  display: none;
}

.sp-header {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1000;
}
.sp-header .inner {
  position: relative;
  width: 100%;
}

.sp-header {
  display: block;
}
.sp-header .logo-sp {
  width: 250px;
  position: absolute;
  left: 5%;
  top: 20px;
}
.sp-header .logo-sp img {
  width: 100%;
  height: auto;
}
@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
.sp-header #drawer #overlay-button {
  position: absolute;
  right: 0;
  top: 0;
  background: #2F2E2E;
  padding: 50px 37px;
  z-index: 5;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .sp-header #drawer #overlay-button {
    padding: 25px 11px;
  }
}
.sp-header #drawer #overlay-button span {
  height: 2px;
  width: 35px;
  border-radius: 2px;
  background-color: #fff;
  position: relative;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.sp-header #drawer #overlay-button span:before {
  top: -10px;
  visibility: visible;
}
.sp-header #drawer #overlay-button span:after {
  top: 10px;
}
.sp-header #drawer #overlay-button span:before, .sp-header #drawer #overlay-button span:after {
  height: 2px;
  width: 35px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  content: "";
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.sp-header #drawer #overlay-button:hover span, .sp-header #drawer #overlay-button:hover span:before, .sp-header #drawer #overlay-button:hover span:after {
  background: #fff;
}
.sp-header #drawer input[type=checkbox] {
  display: none;
}
.sp-header #drawer input[type=checkbox]:checked ~ #overlay {
  visibility: visible;
}
.sp-header #drawer input[type=checkbox]:checked ~ #overlay-button:hover span, .sp-header #drawer input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
}
.sp-header #drawer input[type=checkbox]:checked ~ #overlay-button span:before {
  -webkit-transform: rotate(45deg) translate(7px, 7px);
          transform: rotate(45deg) translate(7px, 7px);
}
.sp-header #drawer input[type=checkbox]:checked ~ #overlay-button span:after {
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
          transform: rotate(-45deg) translate(7px, -7px);
}
.sp-header #drawer #overlay {
  height: 110vh;
  width: 100vw;
  background: #ffffff;
  z-index: 2;
  visibility: hidden;
  position: fixed;
}
.sp-header #drawer #overlay ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  height: 100vh;
  padding-left: 0;
  list-style-type: none;
}
.sp-header #drawer #overlay ul li {
  padding: 1em;
}
.sp-header #drawer #overlay ul li a {
  color: #000;
  text-decoration: none;
  font-size: 1.5em;
}
.sp-header #drawer #overlay ul li a:hover {
  color: #000 !important;
}
.sp-header #drawer ul li {
  font-size: 2rem;
  font-weight: bold;
  width: 80%;
}
.sp-header #drawer ul li.btn a {
  display: block;
  background: #000000;
  padding: 25px 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff !important;
  text-align: center;
}
.sp-header #drawer ul li.btn a::before {
  content: "";
  display: block;
  width: 25px;
  padding-top: 25px;
  height: 0;
  background: url("../img/ico_scale.svg") 0 0 no-repeat;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-size: contain;
  margin-right: 5px;
}

.container {
  max-width: 100%;
  min-width: 100%;
  margin: 100px 0;
}
@media screen and (max-width: 768px) {
  .container {
    min-width: 100%;
  }
}

.intro {
  width: 800px;
  margin: 100px auto;
}
@media screen and (max-width: 768px) {
  .intro {
    width: 90%;
    margin: 0 auto;
  }
}

.logo {
  width: 85%;
  margin: 5vh auto;
}
.logo .cls-1 {
  fill: #fff;
}

.main {
  height: 100vh;
  display: table;
  width: 100%;
  background: #cacaca;
  margin-bottom: 50px;
}
.main .inner {
  display: table-cell;
  vertical-align: middle;
}

.sec-wrap {
  margin-bottom: 80px;
}
.sec-wrap:before {
  margin-bottom: 40px;
}

.title {
  font-family: english-grotesque, sans-serif;
  font-size: 8rem;
  font-weight: bold;
  color: #000000;
  line-height: 1;
  margin-bottom: 1em;
}
.title:before {
  display: inline-block;
  content: "/";
  font-size: 0.8em;
  padding-bottom: 20px;
  margin-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 6rem;
    text-align: left;
    margin-bottom: 0.2em;
  }
}

.works-list {
  width: 800px;
  margin: 1em auto;
}
.works-list dt {
  font-weight: bold;
  font-size: 4rem;
}
.works-list dd {
  margin-bottom: 1em;
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .works-list {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .works-list dt, .works-list dd {
    font-size: 3rem;
    width: 100%;
  }
}

.lead {
  text-align: center;
  margin: 100px 0;
}
@media screen and (max-width: 768px) {
  .lead {
    text-align: center;
    margin: 50px 0;
  }
}

.contact-block {
  width: 800px;
  margin: 100px auto;
}
@media screen and (max-width: 768px) {
  .contact-block {
    width: 90%;
    margin: 0 auto;
  }
}
.contact-block dl {
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .contact-block dl {
    padding: 8px 0;
  }
}
.contact-block dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 5px 0;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .contact-block dl dt {
    margin: 0 0 10px 0;
  }
}
.contact-block dl dt .require-item {
  display: inline-block;
  border: 2px solid #000000;
  padding: 2px 10px;
  font-size: 1rem;
  color: #000000;
  margin-left: 10px;
}
.contact-block .form-textarea {
  height: 9em;
  width: 100%;
  padding: 10px 16px;
  border-radius: 4px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
}
.contact-block .form-text:focus, .contact-block .form-text--loan:focus, .contact-block .form-text--m:focus, .contact-block .form-text--s:focus,
.contact-block .form-textarea:focus {
  outline: 0;
}
.contact-block .form-select {
  position: relative;
  width: 200px;
}
.contact-block .form-select:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  pointer-events: none;
}
.contact-block .form-select select {
  height: 2.4em;
  width: 100%;
  padding: 0 8px;
  border-radius: 4px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.contact-block .radio-wrap {
  margin: 0 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
}
.contact-block .radio-wrap .radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
  line-height: 1;
  color: #000000;
}
.contact-block .notes {
  display: block;
  font-size: 1rem;
  color: #ccc;
}
@media screen and (max-width: 768px) {
  .contact-block .notes {
    margin-top: 5px;
  }
}
.contact-block .form-radio-name {
  color: #000000;
}
.contact-block .form-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-block .form-col2 dt {
  width: 30%;
  font-size: 1.6rem;
}
.contact-block .form-col2 dd {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .contact-block .form-col2 {
    display: block;
  }
  .contact-block .form-col2 dt, .contact-block .form-col2 dd {
    width: 100%;
  }
}

.form-text, .form-text--loan, .form-text--m, .form-text--s {
  height: 2.4em;
  width: 100%;
  padding: 15px 16px;
  border-radius: 4px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .form-text, .form-text--loan, .form-text--m, .form-text--s {
    height: 40px;
  }
}
.form-text--s {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .form-text--s {
    width: 100%;
  }
}
.form-text--m {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .form-text--m {
    width: 100%;
  }
}
.form-text--loan {
  width: 200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .form-text--loan {
    width: 100%;
  }
}

.btn-block {
  text-align: center;
  margin-top: 20px;
}
.btn-block .lead {
  text-align: center;
}

.agree {
  position: relative;
  margin: 10px 0;
}

.submit-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 280px;
  margin: 10px auto;
  color: #fff;
  padding: 12px 24px;
  font-size: 1.6rem;
  background-color: #000000;
  cursor: pointer; /* ポインターカーソルを表示 */
}

.submit-btn[disabled] {
  background-color: #ccc;
  cursor: not-allowed; /* クリック不可のカーソルを表示 */
}

.radio {
  margin: 0.5rem;
}
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  background: #ffffff;
  border-radius: 100%;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #000000;
  -webkit-box-shadow: inset 0 0 0 4px #ffffff;
          box-shadow: inset 0 0 0 4px #ffffff;
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #000000;
}
.radio input[type=radio]:disabled + .radio-label:before {
  -webkit-box-shadow: inset 0 0 0 4px #ffffff;
          box-shadow: inset 0 0 0 4px #ffffff;
  border-color: #bfbfbf;
  background: #bfbfbf;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.agree-wrap {
  margin: auto;
  padding: 20px 0;
  width: 6.6em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
}
.agree-wrap input[type=checkbox] {
  display: none;
}
.agree-wrap input[type=checkbox] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  color: #000000;
  cursor: pointer;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.agree-wrap input[type=checkbox] + label:last-child {
  margin-bottom: 0;
}
.agree-wrap input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #000000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}
.agree-wrap input[type=checkbox]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-block a.btn-def {
  display: inline-block;
  width: 200px;
  height: 52px;
  margin: 25px auto 0 auto;
  position: relative;
  background: #fff;
  border: solid 2px #000000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 50%;
  font-family: english-grotesque, sans-serif;
  font-weight: 700;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .btn-block a.btn-def {
    font-size: 2rem;
  }
}
.btn-block a.btn-def::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #000000;
  z-index: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn-block a.btn-def > span {
  display: inline-block;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #000000;
  z-index: 2;
}
.btn-block a.btn-def:hover > span {
  color: #fff;
}
.btn-block a.btn-def:hover::before {
  width: 100%;
}

footer {
  padding: 50px 0;
  background: #000000;
  color: #fff;
  text-align: center;
}