@charset "UTF-8";
/***
  The new CSS reset - version 1.8.3 (last updated 21.1.2023)
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  appearance: revert;
}

/* preformatted text - use only for this feature */
pre {
  all: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  line-break: after-white-space;
  user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/* ==================================================
  基本要素/汎用クラス
================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  font-weight: inherit;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: rgb(89, 68, 55);
  font-family: "Akabara Cinderella", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-size: 1.4em;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 541px) {
  body {
    font-size: 1.6em;
    line-height: 2;
  }
}

* {
  min-height: 0vw;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
@media screen and (min-width: 541px) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

a:focus-visible,
button:focus-visible {
  outline: 0;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px rgb(89, 68, 55);
}

a {
  color: rgb(89, 68, 55);
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 1024px) {
  a:hover {
    opacity: 0.8;
  }
}

button {
  display: inline-block;
  line-height: 1;
  user-select: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
button:hover {
  opacity: 0.8;
}
button:focus {
  outline: 0;
}
button:not(:disabled) {
  cursor: pointer;
}

.midashi_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.midashi_content .midashi_content_deco {
  width: 345px;
  margin: auto;
}
.midashi_content .japanese {
  font-family: "akabara-cinderella", sans-serif;
  font-size: 69.12px;
  font-weight: 400;
  line-height: 96.77px;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 8px 0 0 0;
}
.midashi_content .english {
  font-family: "akabara-cinderella", sans-serif;
  font-size: 23.04px;
  font-weight: 400;
  line-height: 32.26px;
  letter-spacing: 0.12em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .midashi_content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .midashi_content .midashi_content_deco {
    width: 240px;
    margin: auto;
  }
  .midashi_content .japanese {
    font-family: "akabara-cinderella", sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 67.2px;
    letter-spacing: 0.2em;
    text-align: center;
    padding: 8px 0 8px 0;
  }
  .midashi_content .english {
    font-family: "akabara-cinderella", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    letter-spacing: 0.12em;
    text-align: center;
  }
}
/* ==================================================
  表示/非表示出し分け
================================================== */
.visible_xxs {
  display: none;
}
@media screen and (max-width: 374px) {
  .visible_xxs {
    display: inline-block !important;
  }
}

.hidden_xxs {
  display: inline-block;
}
@media screen and (max-width: 374px) {
  .hidden_xxs {
    display: none !important;
  }
}

.visible_xs {
  display: none;
}
@media screen and (max-width: 540px) {
  .visible_xs {
    display: inline-block !important;
  }
}

.hidden_xs {
  display: inline-block;
}
@media screen and (max-width: 540px) {
  .hidden_xs {
    display: none !important;
  }
}

.visible_sm {
  display: none;
}
@media screen and (min-width: 541px) {
  .visible_sm {
    display: inline-block !important;
  }
}

.hidden_sm {
  display: inline-block;
}
@media screen and (min-width: 541px) {
  .hidden_sm {
    display: none !important;
  }
}

.visible_md {
  display: none;
}
@media screen and (min-width: 1024px) {
  .visible_md {
    display: inline-block !important;
  }
}

.hidden_md {
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .hidden_md {
    display: none !important;
  }
}

.visible_lg {
  display: none;
}
@media screen and (min-width: 1366px) {
  .visible_lg {
    display: inline-block !important;
  }
}

.hidden_lg {
  display: inline-block;
}
@media screen and (min-width: 1366px) {
  .hidden_lg {
    display: none !important;
  }
}

.visible_xl {
  display: none;
}
@media screen and (min-width: 1920px) {
  .visible_xl {
    display: inline-block !important;
  }
}

.hidden_xl {
  display: inline-block;
}
@media screen and (min-width: 1920px) {
  .hidden_xl {
    display: none !important;
  }
}

.visible_all {
  display: inline-block !important;
}

.hidden_all {
  display: none !important;
}

/* ==================================================
  ヘッダー
================================================== */
.lp_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 55px 55px 14px 55px;
  box-sizing: border-box;
}
.lp_header .header_logo {
  position: relative;
  z-index: 100;
}
.lp_header .header_logo a {
  display: flex;
}
.lp_header .header_logo img {
  width: 160px;
  filter: drop-shadow(1px 0 0 #fff) drop-shadow(0 1px 0 #fff) drop-shadow(-1px 0 0 #fff) drop-shadow(0 -1px 0 #fff);
}
.lp_header .header_sns {
  position: relative;
  z-index: 100;
}
.lp_header .header_sns a {
  display: flex;
}
.lp_header .header_sns img {
  width: 40px;
}

@media screen and (max-width: 768px) {
  .lp_header {
    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 14px;
  }
  .lp_header .header_logo a img {
    width: 152px;
  }
  .lp_header .header_sns a img {
    width: 40px;
  }
}
/* ==================================================
  フッター
================================================== */
.lp_footer .footer_inner {
  width: 100%;
  background: rgb(28, 28, 28);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: min(10.667vw, 6rem);
}
.lp_footer .footer_inner small {
  font-size: clamp(1.2rem, 0vw + 1.2rem, 1.2rem);
}

/* ==================================================
  全体レイアウト
================================================== */
.lp_wrap {
  position: relative;
  overflow: hidden;
}

.deco {
  position: fixed;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}

.deco2 {
  position: fixed;
  width: 312px;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.deco3 {
  position: fixed;
  width: 206px;
  height: auto;
  top: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.lp_container {
  background: url(../img/pattern_01.png) repeat;
  background-attachment: fixed;
  font-size: clamp(1.4rem, 0.4vw + 1.184rem, 1.6rem);
}

@media screen and (min-width: 541px) {
  .lp_outer {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    margin: 0 auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .lp_outer {
    width: 1000px;
    margin: -109px auto 0;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1024px) {
  .lp_content {
    margin-left: auto;
  }
}

@media screen and (max-width: 1023px) {
  .deco {
    display: none;
  }
  .deco2 {
    display: none;
  }
  .deco3 {
    display: none;
  }
  .lp_outer {
    justify-content: center;
    position: relative;
    z-index: 5;
    margin: -109px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .lp_outer {
    margin: 0 auto;
  }
}
/* ==================================================
  main内スタイル
================================================== */
.lp_main {
  max-width: 540px;
  background: url("../img/pattern_02.png") repeat center;
}
.lp_main .sec_heading {
  margin-bottom: min(5.333vw, 5rem);
  font-size: clamp(1.5rem, 3.1vw + -0.174rem, 3rem);
}
.lp_main .sec_subheading {
  margin: 0 auto min(2.667vw, 2rem);
  font-size: clamp(1.4rem, 1.7vw + 0.482rem, 2.2rem);
}

/* ==================================================
  ナビゲーション
================================================== */
.lp_nav {
  display: none;
}
.lp_nav .nav_logo {
  padding-top: 70px;
}
.lp_nav .nav_list {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .lp_nav {
    display: block;
    position: fixed;
    background: url(../img/nav_bg.png) no-repeat;
    background-size: contain;
    text-align: center;
    width: 400px;
    height: 740px;
    font-family: "akabara-cinderella", sans-serif;
    padding: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .lp_nav .nav_title {
    display: block;
    margin-bottom: 4rem;
  }
  .lp_nav .nav_item {
    text-align: center;
    margin: 22px 0;
  }
  .lp_nav .nav_item:not(:nth-of-type(2)) {
    margin-top: 0.5rem;
  }
  .lp_nav .nav_link {
    font-family: akabara-cinderella, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 39.2px;
    letter-spacing: 0.2em;
    text-align: center;
  }
  .lp_nav .nav_link.is_active {
    background-color: rgb(89, 68, 55);
    color: #fff;
  }
  .lp_nav .nav_footer {
    margin-top: 4rem;
  }
  .lp_nav .nav_footer .x_official_btn {
    font-size: 18px;
    border: 3px solid #000;
    border-radius: 50px;
    padding: 14px 0px;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0 auto 40px auto;
    background: #fff;
  }
  .lp_nav .nav_footer .x_official_btn:hover {
    color: rgb(89, 68, 55);
    transition: 0.3s;
  }
  .lp_nav .nav_footer .x_official_btn img {
    width: 30px;
    margin-right: 10px;
  }
  .lp_nav .nav_footer .sns_list {
    display: flex;
    position: relative;
  }
  .lp_nav .nav_footer .sns_list:before {
    content: "＼SHARE／";
    position: absolute;
    top: -30px;
    left: 23%;
  }
  .lp_nav .nav_footer .sns_item {
    margin: 0 1rem;
    width: 5rem;
  }
}

/* ==================================================
  fv
================================================== */
.fv {
  width: 100%;
}
.fv h1 img {
  width: 100%;
}
.fv .fv_text {
  text-align: center;
  padding: 25px 0;
}
.fv .fv_copy {
  text-align: center;
  padding: 0 0 25px;
}
.fv .fv_btn {
  text-align: center;
  padding: 0 0 100px;
}

.midashi {
  text-align: center;
  font-size: 36px;
  color: #fff;
  font-family: "akabara-cinderella", sans-serif;
  margin-bottom: 20px;
}
.midashi span {
  position: relative;
}
.midashi span:before {
  content: "";
  position: absolute;
  background: url(../img/heart_white.png) no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -30px;
}
.midashi span:after {
  content: "";
  position: absolute;
  background: url(../img/heart_white.png) no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -30px;
}

.loader-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  background: url(../img/pattern_01.png) repeat;
}

#particles-js {
  width: 100%;
  height: 100%;
  position: relative;
  background: radial-gradient(97.58% 89.99% at 50% 50%, rgba(106, 54, 22, 0) 20.21%, rgba(106, 54, 22, 0.8) 100%);
}

.loading_icon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loading_icon .loadingbook {
  width: 260px;
  height: auto;
}
.loading_icon .loadingtext {
  text-align: center;
  font-family: "akabara-cinderella", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 39.2px;
  letter-spacing: 0.2em;
  text-align: center;
  color: rgb(89, 68, 55);
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (max-width: 768px) {
  .fv {
    width: 100%;
  }
  .fv h1 img {
    width: 100%;
  }
  .fv .fv_text {
    text-align: center;
    padding: 25px 20px;
  }
  .fv .fv_copy {
    text-align: center;
    padding: 0 0 25px;
  }
  .fv .fv_btn {
    text-align: center;
    padding: 0 10px 80px;
  }
  .loading_icon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .loading_icon .loadingbook {
    width: 50vw;
    height: auto;
  }
  .loading_icon .loadingtext {
    text-align: center;
    font-family: "akabara-cinderella", sans-serif;
    font-size: 7vw;
    font-weight: 400;
    line-height: 29.4px;
    letter-spacing: 0.2em;
    text-align: center;
    color: rgb(89, 68, 55);
    padding-top: 4vw;
  }
}
/* ==================================================
  about
================================================== */
.about {
  position: relative;
  margin: 0 30px 100px;
}
.about .about_content {
  background-color: #fff;
  padding: 0 25px 10px 25px;
}
.about .about_content .about_midashi {
  padding-top: 20px;
  font-family: "akabara-cinderella", sans-serif;
  font-size: 40.32px;
  font-weight: 400;
  line-height: 56.45px;
  letter-spacing: 0.3em;
  text-align: center;
  color: rgb(183, 148, 95);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.about .about_content .about_midashi .about_midashi_deco {
  width: 264px;
  margin: auto;
}
.about .about_content .about_midashi .japanese {
  font-family: "akabara-cinderella", sans-serif;
  font-size: 40.32px;
  font-weight: 400;
  line-height: 56.45px;
  letter-spacing: 0.3em;
  text-align: center;
  padding-bottom: 10px;
}
.about .about_content .about_midashi .english {
  font-family: "akabara-cinderella", sans-serif;
  font-size: 20.16px;
  font-weight: 400;
  line-height: 28.22px;
  letter-spacing: 0.12em;
  text-align: center;
}
.about .about_content .about_img {
  text-align: center;
}
.about .about_content .about_text {
  font-family: "source-han-serif-japanese", serif;
  font-size: 20.16px;
  font-weight: 600;
  line-height: 36.29px;
  text-align: center;
  color: rgb(89, 68, 55);
  margin: 35px 0;
}
.about .about_content .about_text02 {
  font-family: "source-han-serif-japanese", serif;
  font-size: 25.92px;
  font-weight: 600;
  line-height: 46.66px;
  text-align: center;
  color: rgb(175, 29, 37);
  margin: 35px 0;
}
.about .about_deco .about_deco_top {
  position: absolute;
  top: -28px;
  left: -1px;
  right: 0;
  margin: auto;
  width: 482px;
  max-width: none;
}
.about .about_deco .about_deco_bottom {
  position: absolute;
  bottom: -77px;
  left: -15px;
  right: 0;
  margin: auto;
  width: 510px;
  max-width: none;
}

@media screen and (max-width: 768px) {
  .about {
    margin: 0 20px 80px;
  }
  .about .about_content {
    background-color: #fff;
    padding: 0 20px 10px 20px;
  }
  .about .about_content .about_midashi {
    padding-top: 20px;
    font-family: "akabara-cinderella", sans-serif;
    font-size: 40.32px;
    font-weight: 400;
    line-height: 56.45px;
    letter-spacing: 0.3em;
    text-align: center;
    color: rgb(183, 148, 95);
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .about .about_content .about_midashi .about_midashi_deco {
    width: 184px;
    margin: auto;
  }
  .about .about_content .about_midashi .japanese {
    font-family: "akabara-cinderella", sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 39.2px;
    letter-spacing: 0.3em;
    text-align: center;
  }
  .about .about_content .about_midashi .english {
    font-family: "akabara-cinderella", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.12em;
    text-align: center;
  }
  .about .about_content .about_img {
    text-align: center;
  }
  .about .about_content .about_text {
    font-family: "source-han-serif-japanese", serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 25.2px;
    text-align: center;
  }
  .about .about_content .about_text02 {
    font-family: "source-han-serif-japanese", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 32.4px;
    text-align: center;
  }
  .about .about_deco .about_deco_top {
    position: absolute;
    top: -1%;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    max-width: none;
  }
  .about .about_deco .about_deco_bottom {
    position: absolute;
    bottom: -86px;
    left: -3%;
    right: 0;
    margin: auto;
    width: 106.2%;
    max-width: none;
  }
}
@media screen and (max-width: 540px) {
  .about .about_deco .about_deco_top {
    position: absolute;
    top: -1%;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    max-width: none;
  }
  .about .about_deco .about_deco_bottom {
    position: absolute;
    bottom: -14.5vw;
    left: -3%;
    right: 0;
    margin: auto;
    width: 106.2%;
    max-width: none;
  }
}
/* ==================================================
  creator
================================================== */
.creator {
  position: relative;
  padding: 0 0 80px;
}
.creator .creator_inner {
  background: #fff;
  margin: auto 30px;
  padding: 40px 40px;
  color: rgb(89, 68, 55);
}
.creator .creator_inner .midashi_creator {
  font-family: "akabara-cinderella", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
}
.creator .creator_inner .midashi_creator .midashi_creator_left {
  width: 70px;
  height: auto;
}
.creator .creator_inner .midashi_creator span {
  font-family: "akabara-cinderella", sans-serif;
  font-size: 40.32px;
  font-weight: 400;
  line-height: 56.45px;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0 5px 0 15px;
}
.creator .creator_inner .midashi_creator .midashi_creator_right {
  width: 70px;
  height: auto;
  transform: scaleX(-1);
}
.creator .creator_inner .midashi_creator.small .midashi_creator_left {
  width: 48px;
  height: auto;
}
.creator .creator_inner .midashi_creator.small span {
  font-family: "akabara-cinderella", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  letter-spacing: 0.2em;
  text-align: center;
}
.creator .creator_inner .midashi_creator.small .midashi_creator_right {
  width: 48px;
  height: auto;
  transform: scaleX(-1);
}
.creator .creator_inner .creators_name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 240px;
  margin: auto;
}
.creator .creator_inner .creators_name img {
  width: 100px;
  height: auto;
  border-radius: 100px;
  border: 1px solid rgb(204, 204, 204);
}
.creator .creator_inner .creators_name h3 {
  font-family: "source-han-serif-japanese", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 32.4px;
  text-align: center;
  color: rgb(89, 68, 55);
}
.creator .creator_inner .creators_name.small {
  width: 143px;
}
.creator .creator_inner .creators_name.small img {
  width: 72px;
  border: none;
}
.creator .creator_inner .creators_name.small h3 {
  font-family: "source-han-serif-japanese", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 25.2px;
  text-align: center;
}
.creator .creator_inner .creator_list {
  display: flex;
  justify-content: center;
  max-width: 240px;
  width: 100%;
  margin: 15px auto 0;
}
.creator .creator_inner .creator_list li {
  width: 100%;
}
.creator .creator_inner .creator_list li .x_btn {
  position: relative;
  background: rgb(28, 28, 28);
  color: #fff;
  width: 100%;
  border-radius: 100px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "source-han-serif-japanese", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 28.8px;
  text-align: center;
}
.creator .creator_inner .creator_list li .x_btn .x_logo_white {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  width: 30px;
}
.creator .creator_inner .creator_list li .x_btn:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 16px;
  display: inline-block;
  width: 8.64px;
  height: 8.64px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.creator .creator_inner .creator02 {
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .creator {
    position: relative;
    padding: 0 0 40px;
  }
  .creator .creator_inner {
    background: #fff;
    margin: auto 5%;
    padding: 40px 40px;
    color: rgb(89, 68, 55);
  }
  .creator .creator_inner .midashi_creator {
    font-family: "akabara-cinderella", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
  }
  .creator .creator_inner .midashi_creator .midashi_creator_left {
    width: 48px;
    height: auto;
  }
  .creator .creator_inner .midashi_creator span {
    font-family: "akabara-cinderella", sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 39.2px;
    letter-spacing: 0.2em;
    text-align: center;
    margin: 0 5px 0 15px;
  }
  .creator .creator_inner .midashi_creator .midashi_creator_right {
    width: 48px;
    height: auto;
    transform: scaleX(-1);
  }
  .creator .creator_inner .midashi_creator.small .midashi_creator_left {
    width: 48px;
    height: auto;
  }
  .creator .creator_inner .midashi_creator.small span {
    font-family: "akabara-cinderella", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    letter-spacing: 0.2em;
    text-align: center;
  }
  .creator .creator_inner .midashi_creator.small .midashi_creator_right {
    width: 48px;
    height: auto;
    transform: scaleX(-1);
  }
  .creator .creator_inner .creators_name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 228px;
    margin: auto;
  }
  .creator .creator_inner .creators_name img {
    width: 100px;
    height: auto;
    border-radius: 100px;
    border: 1px solid rgb(204, 204, 204);
  }
  .creator .creator_inner .creators_name h3 {
    font-family: "source-han-serif-japanese", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 32.4px;
    text-align: center;
    color: rgb(89, 68, 55);
  }
  .creator .creator_inner .creators_name.small {
    width: 143px;
  }
  .creator .creator_inner .creators_name.small img {
    width: 72px;
    border: none;
  }
  .creator .creator_inner .creators_name.small h3 {
    font-family: "source-han-serif-japanese", serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 25.2px;
    text-align: center;
  }
  .creator .creator_inner .creator_list {
    display: flex;
    justify-content: center;
    max-width: 240px;
    width: 100%;
    margin: 12px auto 0;
  }
  .creator .creator_inner .creator_list li {
    width: 100%;
  }
  .creator .creator_inner .creator_list li .x_btn {
    position: relative;
    background: rgb(28, 28, 28);
    color: #fff;
    width: 100%;
    border-radius: 100px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "source-han-serif-japanese", serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 28.8px;
    text-align: center;
  }
  .creator .creator_inner .creator_list li .x_btn .x_logo_white {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    width: 30px;
  }
  .creator .creator_inner .creator_list li .x_btn:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 16px;
    display: inline-block;
    width: 8.64px;
    height: 8.64px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
  .creator .creator_inner .creator02 {
    padding-top: 40px;
  }
}
/* ==================================================
  sns
================================================== */
.chara {
  padding: 60px 0;
}
.chara .charabox {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  margin-top: 40px;
}
.chara .charabox .charabox_img {
  width: 353px;
  position: relative;
  z-index: 1;
}
.chara .charabox .charabox_img img {
  width: 100%;
}
.chara .charabox .charabox_txt {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  width: 280px;
  height: max-content;
  background: rgba(255, 255, 255, 0.8);
  padding: 17px;
  line-height: 1.6;
  font-family: "source-han-serif-japanese", serif;
  font-size: 17.28px;
  font-weight: 600;
  line-height: 31.1px;
  text-align: left;
}
.chara .charabox .charabox_txt .charabox_name {
  display: flex;
  align-items: baseline;
}
.chara .charabox .charabox_txt .charabox_name h3 {
  font-family: "akabara-cinderella", sans-serif;
  font-size: 60.48px;
  font-weight: 400;
  line-height: 60.48px;
  letter-spacing: 0.12em;
  text-align: left;
  color: rgb(89, 68, 55);
}
.chara .charabox .charabox_txt .charabox_name .zokusei {
  font-family: "akabara-cinderella", sans-serif;
  background: rgb(89, 68, 55);
  color: #fff;
  width: 81.08px;
  height: 33.76px;
  gap: 14.4px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chara .charabox .charabox_txt .charabox_deco {
  width: 100%;
  height: auto;
  padding: 20px 0;
}
.chara .charabox02 {
  position: relative;
  width: 100%;
  margin-top: -60px;
}
.chara .charabox02 .charabox02_img {
  width: 280px;
  position: relative;
  z-index: 1;
}
.chara .charabox02 .charabox02_img img {
  width: 100%;
}
.chara .charabox02 .charabox02_txt {
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
  width: 260px;
  height: max-content;
  background: rgba(255, 255, 255, 0.8);
  padding: 17px;
  font-family: "source-han-serif-japanese", serif;
  font-size: 17.28px;
  font-weight: 600;
  line-height: 31.1px;
  text-align: left;
}
.chara .charabox02 .charabox02_txt .charabox_name {
  display: flex;
  align-items: baseline;
}
.chara .charabox02 .charabox02_txt .charabox_name h3 {
  font-family: "akabara-cinderella", sans-serif;
  font-size: 60.48px;
  font-weight: 400;
  line-height: 60.48px;
  letter-spacing: 0.12em;
  text-align: left;
  color: rgb(89, 68, 55);
}
.chara .charabox02 .charabox02_txt .charabox_name .zokusei02 {
  font-family: "akabara-cinderella", sans-serif;
  background: rgb(89, 68, 55);
  color: #fff;
  width: 81.08px;
  height: 33.76px;
  gap: 14.4px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chara .charabox02 .charabox02_txt .charabox02_deco {
  width: 100%;
  height: auto;
  transform: scaleX(-1);
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .chara {
    padding: 60px 0;
  }
  .chara .charabox {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    margin-top: 40px;
  }
  .chara .charabox .charabox_img {
    width: 50vw;
    position: relative;
    z-index: 1;
  }
  .chara .charabox .charabox_img img {
    width: 100%;
  }
  .chara .charabox .charabox_txt {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    width: 50%;
    height: max-content;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px;
    line-height: 1.6;
    font-family: "source-han-serif-japanese", serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 21.6px;
    text-align: left;
  }
  .chara .charabox .charabox_txt .charabox_name {
    display: flex;
    align-items: baseline;
  }
  .chara .charabox .charabox_txt .charabox_name h3 {
    font-family: "akabara-cinderella", sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: 0.12em;
    text-align: left;
    color: rgb(89, 68, 55);
  }
  .chara .charabox .charabox_txt .charabox_name .zokusei {
    font-family: "akabara-cinderella", sans-serif;
    background: rgb(89, 68, 55);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.04em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 24px;
    margin-left: 10px;
  }
  .chara .charabox .charabox_txt .charabox_deco {
    width: 100%;
    height: auto;
    padding: 12px 0;
  }
  .chara .charabox02 {
    position: relative;
    width: 100%;
    margin-top: 0;
  }
  .chara .charabox02 .charabox02_img {
    width: 44vw;
    position: relative;
    z-index: 1;
  }
  .chara .charabox02 .charabox02_img img {
    width: 100%;
  }
  .chara .charabox02 .charabox02_txt {
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    z-index: 2;
    margin: auto;
    width: 50%;
    height: max-content;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px;
    font-family: "source-han-serif-japanese", serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 21.6px;
    text-align: left;
  }
  .chara .charabox02 .charabox02_txt .charabox_name {
    display: flex;
    align-items: baseline;
  }
  .chara .charabox02 .charabox02_txt .charabox_name h3 {
    font-family: "akabara-cinderella", sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: 0.12em;
    text-align: left;
    color: rgb(89, 68, 55);
  }
  .chara .charabox02 .charabox02_txt .charabox_name .zokusei02 {
    background: rgb(89, 68, 55);
    color: #fff;
    font-family: "akabara-cinderella", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.04em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 24px;
    margin-left: 10px;
  }
  .chara .charabox02 .charabox02_txt .charabox02_deco {
    width: 100%;
    height: auto;
    transform: scaleX(-1);
    padding: 12px 0;
  }
}
/* ==================================================
  sns
================================================== */
.sample {
  padding: 0 0 60px;
  position: relative;
  text-align: center;
}
.sample .sample_slider {
  position: relative;
  padding: 0 0 70px;
  margin-bottom: 40px;
}
.sample .swiper {
  margin-top: 20px;
  width: 90%;
}
.sample .swiper-button-prev {
  width: 133px;
  height: 24px;
  top: auto;
  left: 25px;
  bottom: 0;
  display: flex;
  justify-content: space-evenly;
}
.sample .swiper-button-prev p {
  font-family: "akabara-cinderella", sans-serif;
  font-size: 17.28px;
  font-weight: 400;
  line-height: 24.19px;
  text-align: center;
  color: rgb(89, 68, 55);
}
.sample .swiper-button-prev img {
  width: 48px;
}
.sample .swiper-button-next {
  width: 133px;
  height: 24px;
  top: auto;
  right: 25px;
  bottom: 0;
  display: flex;
  justify-content: space-evenly;
}
.sample .swiper-button-next p {
  font-family: "akabara-cinderella", sans-serif;
  font-size: 17.28px;
  font-weight: 400;
  line-height: 24.19px;
  text-align: center;
  color: rgb(89, 68, 55);
}
.sample .swiper-button-next img {
  width: 48px;
  transform: scaleX(-1);
}
.sample .item_btn {
  width: 90%;
  display: block;
  margin: 50px auto 20px auto;
}
.sample .item_btn:hover {
  opacity: 0.7;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "";
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "";
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0;
}

.swiper-pagination-bullet {
  width: 8.64px;
  height: 8.64px;
  border-radius: 144px;
  background: rgb(89, 68, 55);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: rgb(175, 29, 37);
}

@media screen and (max-width: 768px) {
  .sample .swiper-button-prev {
    width: 100px;
    height: 24px;
    top: auto;
    left: 25px;
    bottom: 0;
    display: flex;
    justify-content: space-between;
  }
  .sample .swiper-button-prev p {
    font-family: "akabara-cinderella", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: center;
    color: rgb(89, 68, 55);
  }
  .sample .swiper-button-prev img {
    width: 48px;
  }
  .sample .swiper-button-next {
    width: 100px;
    height: 24px;
    top: auto;
    right: 25px;
    bottom: 0;
    display: flex;
    justify-content: space-between;
  }
  .sample .swiper-button-next p {
    font-family: "akabara-cinderella", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: center;
    color: rgb(89, 68, 55);
  }
  .sample .swiper-button-next img {
    width: 48px;
    transform: scaleX(-1);
  }
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
  }
  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 144px;
    background: rgb(89, 68, 55);
    opacity: 1;
  }
  .swiper-pagination-bullet-active {
    background: rgb(175, 29, 37);
  }
  .nav_cv {
    width: 94%;
    display: inline-block;
  }
}
/* ==================================================
  sns
================================================== */
.series {
  padding: 60px 0 30px;
}
.series .series_list {
  width: 90%;
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.series .series_list li {
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
}
.series .series_list li p {
  font-family: "source-han-serif-japanese", serif;
  font-size: 20.16px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin: 10px 0;
}
.series .series_list li img {
  width: 100%;
  margin-bottom: 20px;
}

.cv_btn {
  position: relative;
  display: inline-block;
  padding: 11.52px 28px 11.52px 23.04px;
  border-radius: 144px;
  margin: auto;
  background: rgb(28, 28, 28);
  font-family: "source-han-serif-japanese", serif;
  font-size: 23.04px;
  font-weight: 600;
  line-height: 23.04px;
  text-align: center;
  color: #fff;
}
.cv_btn:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 16px;
  display: inline-block;
  width: 8.64px;
  height: 8.64px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .series {
    padding: 0;
  }
  .series .series_list {
    width: 90%;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .series .series_list li {
    width: 100%;
    margin-bottom: 60px;
    text-align: center;
  }
  .series .series_list li p {
    font-family: "source-han-serif-japanese", serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    margin: 10px 0;
  }
  .series .series_list li img {
    width: 100%;
    margin-bottom: 10px;
  }
  .cv_btn {
    position: relative;
    display: inline-block;
    padding: 11.52px 28px 11.52px 23.04px;
    border-radius: 144px;
    margin: auto;
    background: rgb(28, 28, 28);
    font-family: "source-han-serif-japanese", serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    color: #fff;
  }
  .cv_btn:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 16px;
    display: inline-block;
    width: 8.64px;
    height: 8.64px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
}/*# sourceMappingURL=lp.css.map */