@charset "UTF-8";
/*
 * Theme Name: Vの名刺代わり
 * Theme URI:
 * Description: クリエイターのwebサイトを簡単に作成するテンプレート
 * Author: Balus株式会社
 * Version: 1.1.0
*/
html {
  font-size: 10px;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.4rem;
}

h1,
h2,
h3,
p {
  margin: 0;
  font-weight: normal;
  line-height: 1;
}

ul {
  padding: 0;
  margin: 0;
}

dl {
  margin: 0;
}
dl dt,
dl dd {
  margin: 0;
}

#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#header {
  position: relative;
  z-index: 1000;
}

#header-pc {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #header-pc {
    display: block;
  }
}
#header-pc .header_pc_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 32px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
#header-pc .header_pc_inner .header_pc_logo img {
  height: 44px;
}
#header-pc .header_pc_inner .header_pc_logo p {
  font-size: 4.4rem;
}
#header-pc .header_pc_inner .header_pc_nav ul {
  display: flex;
  align-items: center;
  justify-content: end;
}
#header-pc .header_pc_inner .header_pc_nav ul li:not(:last-of-type) {
  margin-right: 20px;
}
#header-pc .header_pc_inner .header_pc_nav ul li a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
}

#header-sp {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #header-sp {
    display: none;
  }
}
#header-sp .header_sp_menu {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
}
#header-sp .header_sp_menu .header_sp_logo img {
  height: 36px;
}
#header-sp .header_sp_menu .header_sp_logo p {
  font-size: 3.8rem;
}
#header-sp .header_sp_menu .header_sp_menu_button {
  position: relative;
  width: 21px;
  height: 14px;
  cursor: pointer;
}
#header-sp .header_sp_menu .header_sp_menu_button span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: 0.3s;
}
#header-sp .header_sp_menu .header_sp_menu_button span:first-of-type {
  top: 0;
}
#header-sp .header_sp_menu .header_sp_menu_button span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
#header-sp .header_sp_menu .header_sp_menu_button span:last-of-type {
  bottom: 0;
}
#header-sp .header_sp_nav {
  position: fixed;
  top: -245px;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 500;
  transition: 0.3s;
}
#header-sp .header_sp_nav ul li a {
  display: block;
  padding: 14px 20px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}
#header-sp.open_menu .header_sp_menu .header_sp_menu_button span:first-of-type {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#header-sp.open_menu .header_sp_menu .header_sp_menu_button span:nth-of-type(2) {
  display: none;
}
#header-sp.open_menu .header_sp_menu .header_sp_menu_button span:last-of-type {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
#header-sp.open_menu .header_sp_nav {
  top: 50px;
}

#main {
  flex: 1 1 auto;
}
#main.thanks_page {
  display: flex;
  align-items: center;
  justify-content: center;
}

#main-visual {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #main-visual {
    margin-bottom: 60px;
  }
}
#main-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.contents_base_design {
  padding: 40px 0;
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (min-width: 768px) {
  .contents_base_design {
    margin-bottom: 60px;
  }
}
.contents_base_design h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.contents_base_design .contents_layout {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
}

#profile .profile_inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  #profile .profile_inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 768px) {
  #profile #profile-text {
    padding-top: 40px;
  }
}
#profile #profile-text .name {
  margin-bottom: 24px;
}
#profile #profile-text .name h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  #profile #profile-text .name h2 {
    font-size: 4.8rem;
  }
}
#profile #profile-text .name p {
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  #profile #profile-text .name p {
    font-size: 2rem;
  }
}
#profile #profile-text .tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
#profile #profile-text .tag_list .tag {
  padding: 4px 8px;
  font-weight: 600;
  border: 1px solid #000;
  border-radius: 4px;
}
#profile #profile-text .link_list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (min-width: 768px) {
  #profile #profile-text .link_list {
    margin-bottom: 32px;
  }
}
#profile #profile-text .link_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#profile #profile-text .link_list .spwn img {
  width: 56px;
}
#profile #profile-text .link_list .x img,
#profile #profile-text .link_list .youtube img,
#profile #profile-text .link_list .discord img {
  height: 20px;
}
#profile #profile-text .link_list .tiktok img,
#profile #profile-text .link_list .twitch img,
#profile #profile-text .link_list .instagram img,
#profile #profile-text .link_list .line img,
#profile #profile-text .link_list .facebook img,
#profile #profile-text .link_list .fanbox img,
#profile #profile-text .link_list .booth img,
#profile #profile-text .link_list .marshmallow img,
#profile #profile-text .link_list .amazon img,
#profile #profile-text .link_list .other img {
  height: 24px;
}
#profile .profile_text p {
  line-height: 1.5em;
}
@media screen and (min-width: 768px) {
  #profile .profile_text p {
    font-size: 1.6rem;
  }
}
#profile .profile_text p:not(:last-of-type) {
  margin-bottom: 1.4rem;
}
@media screen and (min-width: 768px) {
  #profile .profile_text p:not(:last-of-type) {
    margin-bottom: 1.6rem;
  }
}
#profile #profile_image_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  #profile #profile_image_pc {
    display: block;
  }
}
#profile #profile_image_sp {
  display: block;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  #profile #profile_image_sp {
    display: none;
  }
}

#video h2 {
  text-align: center;
}
#video .video_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  #video .video_list {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
#video .video_list .video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
#video .video_list .video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
#video .more_button {
  text-align: center;
}
#video .more_button a {
  display: inline-block;
  padding: 8px 16px;
  color: #000;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 6px;
}

#illustration h2 {
  text-align: center;
}
#illustration .illustration_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  #illustration .illustration_list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
}
#illustration .illustration_list .illustration_item {
  cursor: pointer;
}
#illustration .illustration_list .illustration_item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
#illustration .illustration_list .illustration_item h3 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 24px;
}
#illustration .illustration_list .illustration_item p {
  font-size: 1.2rem;
  font-weight: 400;
}

#history h2 {
  text-align: center;
}
#history .history_list {
  overflow: hidden;
}
#history dl {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  padding: 14px 32px;
}
@media screen and (min-width: 768px) {
  #history dl {
    grid-template-columns: max-content auto;
    gap: 52px;
    padding: 0;
  }
  #history dl.display_history_date {
    grid-template-columns: 120px auto;
  }
}
#history dl::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 1px;
  height: 7rem;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  #history dl::before {
    left: 3px;
  }
}
@media screen and (min-width: 768px) {
  #history dl::before {
    display: none;
  }
}
#history dl::after {
  content: "●";
  position: absolute;
  top: 50%;
  color: #000;
  font-size: 0.8rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  #history dl::after {
    display: none;
  }
}
#history dl:last-of-type::before {
  height: 0;
}
#history dl:last-of-type dt::before {
  height: 0;
}
#history dl dt,
#history dl dd {
  display: flex;
  align-items: center;
}
#history dl dt {
  position: relative;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #history dl dt {
    padding: 18px 0;
  }
}
#history dl dt::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 1px;
  height: 7rem;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  #history dl dt::before {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  #history dl dt::before {
    right: -27px;
    height: 6rem;
  }
}
#history dl dt::after {
  content: "●";
  position: absolute;
  top: 50%;
  color: #000;
  font-size: 0.8rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #history dl dt::after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  #history dl dt::after {
    right: -30px;
  }
}
#history dl dd {
  display: block;
  margin-left: 0px;
  font-size: 1.4rem;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  #history dl dd {
    padding: 16px 0;
    font-size: 1.6rem;
  }
}
#history dl a {
  font-weight: 600;
  align-items: center;
  color: #000;
}
#history dl a .ellipsis_layout {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#history dl a svg {
  padding-top: 2px;
}

#free-writing h2 {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #free-writing .free_writing_area {
    font-size: 1.6rem;
  }
}
#free-writing .free_writing_area p {
  line-height: 1.4em;
}
#free-writing .free_writing_area p:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

#contact h2 {
  text-align: center;
}
#contact .form_layout {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
}
#contact dl {
  margin-bottom: 8px;
}
#contact dt {
  margin-bottom: 4px;
  font-size: 1.2rem;
  font-weight: 600;
}
#contact dt p span {
  display: inline-block;
  margin-left: 4px;
}
#contact dd {
  margin-bottom: 12px;
}
#contact dd:last-of-type {
  margin-bottom: 0px;
}
#contact input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #000;
  border-radius: 4px;
}
#contact input::-moz-placeholder {
  color: #cbd5e0;
}
#contact input::placeholder {
  color: #cbd5e0;
}
#contact textarea {
  width: 100%;
  height: 240px;
  padding: 9px 12px;
  border: 1px solid #000;
  border-radius: 4px;
  resize: vertical;
}
#contact textarea::-moz-placeholder {
  color: #cbd5e0;
}
#contact textarea::placeholder {
  color: #cbd5e0;
}
#contact .checkbox {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
#contact .checkbox input {
  width: auto;
  height: auto;
}
#contact .checkbox label {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
#contact .checkbox a {
  color: #000;
}
#contact .submit_button {
  text-align: center;
}
#contact .submit_layout {
  display: inline-block;
}
#contact .submit_layout input {
  padding: 8px 16px;
  font-size: 1.6rem;
  font-weight: 600;
  background-color: inherit;
  border: 1px solid #000;
  border-radius: 6px;
  cursor: pointer;
}

#footer {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (min-width: 768px) {
  #footer .footer_layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
  }
}
#footer .powered_by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  #footer .powered_by {
    margin-bottom: 0;
  }
}
#footer p {
  font-size: 1.2rem;
  text-align: center;
}
#footer img {
  width: 100px;
  height: auto;
}
#footer .link_list {
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #footer .link_list {
    margin-bottom: 0;
  }
}

.illustration_modal_box {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1500;
}
.illustration_modal_box .illustration {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 480px;
  padding: 24px;
  transform: translateX(-50%) translateY(-50%);
  background-color: #fff;
}
.illustration_modal_box .illustration_modal_layout {
  display: grid;
  grid-template-columns: auto 28px;
  gap: 12px;
}
.illustration_modal_box .illustration_text h3 {
  margin-bottom: 4px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2em;
  word-wrap: break-word;
}
.illustration_modal_box .illustration_text .author_layout {
  display: flex;
  align-items: center;
}
.illustration_modal_box .illustration_text .author_layout p,
.illustration_modal_box .illustration_text .author_layout a {
  font-size: 1.2rem;
  font-weight: 400;
}
.illustration_modal_box .illustration_text .author_layout .author {
  display: flex;
  align-items: center;
}
.illustration_modal_box .illustration_text .author_layout .link::before {
  content: "/";
  display: block;
  margin: 0 4px;
}
.illustration_modal_box .illustration_text .author_layout .link a {
  display: flex;
  align-items: center;
  color: #000;
}
.illustration_modal_box .illustration_text .author_layout .link a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-position: center center;
  background-size: cover;
}
.illustration_modal_box img {
  width: 100%;
  height: auto;
  margin-top: 12px;
}
.illustration_modal_box .illustration_modal_close {
  position: relative;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.illustration_modal_box .illustration_modal_close::before, .illustration_modal_box .illustration_modal_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.illustration_modal_box .illustration_modal_close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.illustration_modal_box .illustration_modal_close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.thanks_page {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

#contact-thanks {
  padding: 60px;
  margin-top: 63px;
}
#contact-thanks .icon_layout {
  margin-bottom: 8px;
  text-align: center;
}
#contact-thanks h1 {
  margin-bottom: 32px;
  font-size: 2.4rem;
  font-weight: bold;
}
#contact-thanks .back_top_button {
  text-align: center;
}
#contact-thanks .back_top_button a {
  display: inline-block;
  padding: 8px 16px;
  color: #000;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 6px;
}

.page_privacy_policy {
  padding: 60px 0;
  margin-top: 63px;
  background-color: white;
}

#privacy-policy {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
#privacy-policy h1 {
  margin-bottom: 40px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
#privacy-policy h2 {
  margin: 20px 0 8px;
  font-weight: bold;
}
#privacy-policy p {
  margin-bottom: 4px;
  font-size: 1.4rem;
  line-height: 1.5em;
}
#privacy-policy ul li {
  margin-bottom: 4px;
  font-size: 1.4rem;
  line-height: 1.5em;
}

.slideIn {
  transform: translate3d(0, -54px, 0);
  transition: 1s;
}
@media screen and (min-width: 768px) {
  .slideIn {
    transform: translate3d(0, -63px, 0);
  }
}

.fadeIn_right {
  transform: translate3d(20px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadeIn_left {
  transform: translate3d(-20px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadeIn_bottom {
  transform: translate3d(0, 20px, 0);
  transition: 1s;
  opacity: 0;
}

.slideIn.animated,
.fadeIn_right.animated,
.fadeIn_left.animated,
.fadeIn_bottom.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}/*# sourceMappingURL=style.css.map */