@charset "UTF-8";
html {
  box-sizing: border-box;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 !important;
  scroll-behavior: smooth;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 572px) {
  html {
    font-size: 14px;
  }
}

input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  margin: 0;
}

.container {
  overflow: hidden;
}

:root {
  --header-height: 80px;
  /* ヘッダーの高さを変数として管理 */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

.wrap {
  margin-inline: auto;
  padding: 0 40px;
  width: min(100%, 1200px);
}
@media screen and (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}

.wrap-tb {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 1004px);
}

.wrap-tb-s {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 808px);
}

@media screen and (max-width: 1024px) {
  .mb-hide {
    display: none;
  }
}

.mb-display {
  display: none;
}
@media screen and (max-width: 964px) {
  .mb-display {
    display: block;
  }
}

@media screen and (max-width: 572px) {
  .sm-hide {
    display: none;
  }
}

.sm-disp {
  display: none;
}
@media screen and (max-width: 572px) {
  .sm-disp {
    display: block;
  }
}

.scroll-off {
  overflow: hidden;
}

.scroll-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: block flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  transition: 0.7s;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 572px) {
  .scroll-top {
    width: 50px;
    height: 50px;
    bottom: 60px;
  }
}
.scroll-top.is-show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  box-shadow: none;
}
.scroll-top::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg) translate(2px, 2px);
}

.container {
  background-color: #000;
}
.container .header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  background-color: transparent;
  z-index: 10;
}
@media screen and (max-width: 572px) {
  .container .header {
    height: 60px;
  }
}
.container .header .flex {
  display: flex;
  align-items: center;
  height: 100%;
}
.container .header__logo {
  display: block;
  font-size: 1.75rem;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .container .header__logo {
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
  }
}
.container .header__nav {
  margin: 0 0 0 auto;
}
.container .header__nav-list {
  display: flex;
  align-items: center;
  line-height: 1;
}
.container .header__nav-list > li > a {
  display: block;
  font-size: 0.925rem;
  padding: 0.5em;
  font-weight: bold;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .container .header__nav-list > li > a {
    display: none;
  }
}
.container .header__nav-list > li > a:hover {
  opacity: 0.8;
}
.container .header__nav-list > li.l-contact {
  margin-left: 1em;
}
@media screen and (max-width: 1024px) {
  .container .header__nav-list > li.l-contact {
    display: block;
  }
}
@media screen and (max-width: 572px) {
  .container .header__nav-list > li.l-contact {
    display: none;
  }
}
.container .header__nav-list > li.l-contact > a {
  display: block;
  padding: 1em 2em;
  border-radius: 3px;
  background: linear-gradient(120deg, #BD9011 -1.64%, #C8BDA0 12.73%, #BD9011 29.06%, #BD9011 65.42%, #C8BDA0 85.12%, #BD9011 102.96%);
}
.container .sns-icon {
  position: fixed;
  display: flex;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  z-index: 10;
  background-color: #222;
  gap: 30px;
}
@media screen and (max-width: 572px) {
  .container .sns-icon {
    top: initial;
    bottom: 40px;
    left: 0;
    width: 100%;
    flex-direction: row;
    transform: none;
    height: 40px;
    padding: 0;
  }
}
.container .sns-icon > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .container .sns-icon > a {
    width: 20px;
  }
}
.container .sns-icon > a:hover {
  opacity: 0.7;
}
.container .sns-icon > a > img {
  width: 100%;
  display: inline-block;
}
.container .fix-btn {
  display: none;
}
@media screen and (max-width: 572px) {
  .container .fix-btn {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #fff;
    background: linear-gradient(120deg, #BD9011 -1.64%, #C8BDA0 12.73%, #BD9011 29.06%, #BD9011 65.42%, #C8BDA0 85.12%, #BD9011 102.96%);
    font-size: 1rem;
    font-weight: bold;
    z-index: 10;
    line-height: 40px;
  }
}
.container .firstview {
  width: 100%;
  height: 100dvh;
  position: relative;
}
@media screen and (max-width: 572px) {
  .container .firstview {
    height: auto;
    padding: 100px 0 80px;
  }
}
.container .firstview .bg1 {
  width: 30%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 572px) {
  .container .firstview .bg1 {
    width: 100%;
  }
}
.container .firstview .bg2 {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 20%);
  opacity: 0.8;
}
@media screen and (max-width: 572px) {
  .container .firstview .bg2 {
    width: 150%;
  }
}
.container .firstview .wrap {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 572px) {
  .container .firstview .wrap {
    flex-direction: column;
    gap: 30px;
  }
}
.container .firstview__info {
  text-align: center;
  line-height: 1.4;
  width: 50%;
}
@media screen and (max-width: 572px) {
  .container .firstview__info {
    width: 100%;
  }
}
.container .firstview__info-ac {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(175.79deg, #D0A900 -15.96%, #FFFFFF 8.79%, #D0A900 60.4%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.2509803922);
}
@media screen and (max-width: 572px) {
  .container .firstview__info-ac {
    font-size: 1.125rem;
  }
}
.container .firstview__info-msg {
  margin-top: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 572px) {
  .container .firstview__info-msg {
    font-size: 1.125rem;
  }
}
.container .firstview__info-cp {
  font-size: 2.25rem;
  font-weight: bold;
  margin-top: 20px;
}
@media screen and (max-width: 572px) {
  .container .firstview__info-cp {
    font-size: 2rem;
  }
}
.container .firstview__info-text {
  font-size: 1rem;
  margin-top: 30px;
}
.container .firstview__info > a {
  display: block;
  width: 300px;
  padding: 5px;
  border-radius: 10px;
  background: linear-gradient(120deg, #BD9011 -1.64%, #C8BDA0 12.73%, #BD9011 29.06%, #BD9011 65.42%, #C8BDA0 85.12%, #BD9011 102.96%);
  margin: 30px auto 0;
  transition: 0.3s ease;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .container .firstview__info > a {
    display: none;
  }
}
.container .firstview__info > a:hover {
  opacity: 0.7;
}
.container .firstview__info > a .inner {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 0.5em 1em;
}
.container .firstview__image {
  width: 47%;
}
@media screen and (max-width: 572px) {
  .container .firstview__image {
    width: 60%;
  }
}
.container .firstview__image > img {
  width: 100%;
}
.container .about {
  margin-top: 200px;
}
@media screen and (max-width: 572px) {
  .container .about {
    margin-top: 100px;
  }
}
.container .about__msg {
  margin-top: 30px;
  text-align: center;
}
.container .sechead {
  position: relative;
  padding-bottom: 30px;
}
.container .sechead__en {
  font-size: 0.925rem;
  text-align: center;
}
.container .sechead__title {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 572px) {
  .container .sechead__title {
    font-size: 1.375rem;
  }
}
.container .sechead > img {
  width: min(700px, 100%);
  opacity: 0.7;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 572px) {
  .container .sechead > img {
    transform: translate(-50%, -30%);
  }
}
.container .service {
  margin-top: 100px;
}
@media screen and (max-width: 572px) {
  .container .service {
    margin-top: 80px;
  }
}
.container .service__msg {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .container .service__msg {
    margin-top: 20px;
  }
}
.container .service__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .container .service__list {
    margin-top: 20px;
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.container .service__list-item {
  display: flex;
  align-items: center;
}
.container .service__list-item > img {
  width: 60px;
  display: inline-block;
}
.container .service__list-item p {
  margin-left: 20px;
}
.container .service .service-image {
  display: block;
  margin: 30px auto;
  width: min(350px, 80%);
}
.container .flow {
  margin-top: 100px;
}
@media screen and (max-width: 572px) {
  .container .flow {
    margin-top: 80px;
  }
}
.container .flow__item {
  margin-top: 40px;
}
@media screen and (max-width: 572px) {
  .container .flow__item {
    margin-top: 30px;
  }
}
.container .flow__item-title {
  text-align: center;
  font-size: 1.125rem;
}
.container .flow__item > img {
  display: block;
  margin: 10px auto 0;
  width: min(350px, 80%);
}
.container .flow__step {
  margin-top: 80px;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgb(0, 0, 0)), url(../image/flow-step.png);
  background-size: 30%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 572px) {
  .container .flow__step {
    margin-top: 60px;
    background-size: 100%;
  }
}
.container .flow__step-title {
  font-size: 1.5rem;
  margin-top: 40px;
  font-weight: bold;
  background: linear-gradient(175.79deg, #D0A900 14.37%, #FFFFFF 49.91%, #D0A900 75.09%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 572px) {
  .container .flow__step-title {
    font-size: 1.375rem;
    margin-top: 30px;
  }
}
.container .flow__step-list {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 572px) {
  .container .flow__step-list {
    margin-top: 30px;
    flex-direction: column;
    gap: 20px;
  }
}
.container .sec-accent {
  width: 100%;
}
.container .sec-accent > img {
  width: 100%;
}
.container .menu {
  text-align: center;
}
.container .menu__title {
  margin-top: 30px;
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .container .menu__title {
    margin-top: 20px;
  }
}
.container .menu__list {
  margin-top: 10px;
}
.container .menu__list > li {
  line-height: 2;
}
.container .menu__list > li::before {
  content: "・";
}
.container .menu__text {
  margin-top: 30px;
}
.container .menu .menu-image {
  display: block;
  margin: 30px auto 0;
  width: min(350px, 80%);
}
.container .format {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .container .format {
    margin-top: 80px;
  }
}
.container .format__list {
  margin-top: 30px;
}
.container .format__list > li {
  line-height: 2;
}
.container .format__list > li::before {
  content: "・";
}
.container .format__fee {
  margin-top: 30px;
  font-size: 1.25rem;
  text-align: center;
}
.container .format__text {
  margin-top: 20px;
  font-size: 0.925rem;
}
.container .contact {
  margin-top: 100px;
  position: relative;
}
@media screen and (max-width: 572px) {
  .container .contact {
    margin-top: 80px;
  }
}
.container .contact .bg {
  position: absolute;
  width: 100%;
  opacity: 0.5;
  width: 100%;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
}
.container .contact .wrap {
  position: relative;
  z-index: 2;
}
.container .contact__text {
  margin-top: 50px;
  text-align: center;
}
.container .contact__tap {
  text-align: center;
  font-size: 0.875rem;
  display: none;
}
@media screen and (max-width: 572px) {
  .container .contact__tap {
    display: block;
    margin-top: 50px;
  }
}
.container .contact__image {
  display: block;
  width: min(650px, 100%);
  margin: 50px auto 0;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .container .contact__image {
    margin: 5px auto 0;
  }
}
.container .contact__image:hover {
  opacity: 0.7;
}
.container .contact__image > img {
  width: 100%;
}
.container .law {
  margin-top: 80px;
}
.container .law__title {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
}
.container .law__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .container .law__list {
    margin-top: 10px;
    flex-direction: column;
  }
}
.container .law__list > dt {
  width: 30%;
  margin-top: 15px;
}
@media screen and (max-width: 572px) {
  .container .law__list > dt {
    font-size: 1.125rem;
    margin-top: 20px;
    width: 100%;
  }
}
.container .law__list > dd {
  width: 70%;
  margin-top: 15px;
}
@media screen and (max-width: 572px) {
  .container .law__list > dd {
    margin-top: 0;
    width: 100%;
  }
}
.container .disclaimer {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .container .disclaimer {
    margin-top: 60px;
  }
}
.container .disclaimer__title {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
}
.container .disclaimer__list {
  margin-top: 30px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .container .disclaimer__list {
    margin-top: 20px;
  }
}
.container .disclaimer__list > li::before {
  content: "・";
}
.container .policy {
  margin-top: 100px;
}
@media screen and (max-width: 572px) {
  .container .policy {
    margin-top: 60px;
  }
}
.container .policy__title {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
}
.container .policy__text {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .container .policy__text {
    margin-top: 20px;
  }
}
.container .footer {
  padding: 20px;
  text-align: center;
  font-size: 0.935rem;
  margin-top: 60px;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .container .footer {
    padding-bottom: 100px;
  }
}
/*# sourceMappingURL=style.css.map */