/*------------------------------
RESET
--------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Roboto:wght@100..900&display=swap");
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*------------------------------
common
--------------------------------*/
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

:root {
  --vw: 1vw;
}

@media screen and (min-width: 769px) {
  html {
    font-size: min(0.715vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.334vw;
  }
}

body {
  margin: 0;
}

svg {
  max-width: 100%;
  max-height: 100%;
}

a {
  transition: opacity 0.5s;
}
a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}

@keyframes animeFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animeFadeUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.content_fadeIn {
  opacity: 0;
}
.content_fadeIn.is-animated {
  animation: animeFadeIn 1s 0s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.content_fadeUp {
  opacity: 0;
}
.content_fadeUp.is-animated {
  animation: animeFadeUp 1s 0s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/*
========================================
lp04-spss-tullys hero
========================================
*/
#page-lp04-spss {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  color: #4d0600;
  letter-spacing: 0.1em;
}

#page-lp04-spss .hero_section {
  position: relative;
  overflow: hidden;
}

#page-lp04-spss .hero_visual {
  position: relative;
  z-index: 1;
}

#page-lp04-spss .hero_img {
  margin: 0;
  width: 100%;
}
#page-lp04-spss .hero_img img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

#page-lp04-spss .hero_logo {
  position: absolute;
  z-index: 3;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .hero_logo {
    top: 3.4rem;
    left: 4.2rem;
    width: 22.8rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .hero_logo {
    top: 5.7rem;
    left: 50%;
    width: 38rem;
    transform: translateX(-50%);
  }
}
#page-lp04-spss .hero_logo a {
  display: block;
}
#page-lp04-spss .hero_logo img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

#page-lp04-spss .hero_catch {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .hero_catch {
    top: 16rem;
    left: 13rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .hero_catch {
    top: 20.6rem;
    right: 4.6rem;
    left: auto;
    gap: 2.5rem;
  }
}

#page-lp04-spss .hero_catch_item {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #4d0600;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .hero_catch_item {
    padding: 1.5rem 1rem 1.9rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .hero_catch_item {
    padding: 2.2rem 1rem 2.6rem;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .hero_catch_item02 {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .hero_catch_item02 {
    margin-top: 9rem;
  }
}

#page-lp04-spss .hero_catch_band {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #fff;
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .hero_catch_band {
    border-radius: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .hero_catch_band {
    border-radius: 0.5rem;
  }
}

#page-lp04-spss .hero_catch_txt {
  position: relative;
  z-index: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  opacity: 0;
  will-change: opacity;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .hero_catch_txt {
    line-height: 1;
    font-size: 4rem;
  }
  #page-lp04-spss .hero_catch_txt > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .hero_catch_txt > p:first-of-type {
    margin-top: 0em;
  }
  #page-lp04-spss .hero_catch_txt > p:last-of-type {
    margin-bottom: 0em;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .hero_catch_txt {
    line-height: 1;
    font-size: 4.6rem;
  }
}

#page-lp04-spss .hero_section.is-ready .hero_feature_bg {
  animation: hero_feature_spin 40s linear infinite;
}

#page-lp04-spss .hero_section.is-catch-ready .hero_catch_band {
  animation: hero_catch_band 1s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#page-lp04-spss .hero_section.is-catch-ready .hero_catch_txt {
  animation: hero_catch_txt 1.5s ease both;
}
#page-lp04-spss .hero_section.is-catch-ready .hero_catch_item01 .hero_catch_band {
  animation-delay: 0.25s;
}
#page-lp04-spss .hero_section.is-catch-ready .hero_catch_item01 .hero_catch_txt {
  animation-delay: 1.15s;
}
#page-lp04-spss .hero_section.is-catch-ready .hero_catch_item02 .hero_catch_band {
  animation-delay: 0.75s;
}
#page-lp04-spss .hero_section.is-catch-ready .hero_catch_item02 .hero_catch_txt {
  animation-delay: 1.65s;
}

@keyframes hero_catch_band {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes hero_catch_txt {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#page-lp04-spss .hero_wave_defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

#page-lp04-spss .hero_bottom {
  position: relative;
  z-index: 2;
  margin-top: -2px;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .hero_bottom {
    width: 100%;
    height: 25rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .hero_bottom {
    width: 100%;
    height: 56rem;
  }
}

#page-lp04-spss .hero_bottom_bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: calc(100% + 2px);
  z-index: 0;
  background-color: #ab2138;
  pointer-events: none;
  transform: translateZ(0);
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .hero_bottom_bg {
    clip-path: url(#hero-wave-pc);
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .hero_bottom_bg {
    clip-path: url(#hero-wave-sp);
  }
}

#page-lp04-spss .hero_bottom_inr {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .hero_bottom_inr {
    width: 112rem;
    margin-inline: auto;
  }
}

#page-lp04-spss .hero_features {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .hero_features {
    position: absolute;
    left: 0;
    top: -8.3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .hero_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    column-gap: 2rem;
    row-gap: 1rem;
    top: -18rem;
  }
}

#page-lp04-spss .hero_feature {
  position: relative;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .hero_feature {
    width: 22.6rem;
    height: 22.6rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .hero_feature {
    width: 32rem;
    height: 32rem;
  }
}

@media screen and (max-width: 768px) {
  #page-lp04-spss .hero_feature01 {
    grid-column: 1/-1;
  }
}

@media screen and (max-width: 768px) {
  #page-lp04-spss .hero_feature02 {
    margin-top: -2rem;
  }
}

@media screen and (max-width: 768px) {
  #page-lp04-spss .hero_feature03 {
    margin-top: -2rem;
  }
}

#page-lp04-spss .hero_feature_bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#page-lp04-spss .hero_feature_txt {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  height: 100%;
}
#page-lp04-spss .hero_feature_txt img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

@keyframes hero_feature_spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#page-lp04-spss .hero_elem {
  margin: 0;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .hero_elem {
    position: absolute;
    right: -3.8rem;
    top: -8.2rem;
    width: 39.6rem;
    z-index: 2;
  }
}
#page-lp04-spss .hero_elem img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

#page-lp04-spss .starter_set_section {
  position: relative;
  background-repeat: repeat;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_section {
    margin-top: -11rem;
    background-image: url(/html/user_data/lp/lp04-spss/tullys/img/repeat_bg01.webp);
    background-size: 144rem auto;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_section {
    margin-top: -5rem;
    background-image: url(/html/user_data/lp/lp04-spss/tullys/img/repeat_bg01_sp.webp);
    background-size: 75rem auto;
  }
}

#page-lp04-spss .starter_set_elem {
  position: absolute;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_elem.starter_set_elem01 {
    top: 20rem;
    left: 0;
    width: 35rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_elem.starter_set_elem01 {
    z-index: 2;
    top: -7.2rem;
    left: 0;
    width: 24.5rem;
  }
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_elem.starter_set_elem02 {
    top: 10.4rem;
    right: 0;
    width: 33.3rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_elem.starter_set_elem02 {
    top: 9rem;
    right: 0;
    width: 20rem;
  }
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_elem.starter_set_elem03 {
    top: 93rem;
    left: 0;
    width: 28rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_elem.starter_set_elem03 {
    top: 95rem;
    left: 0;
    width: 19.6rem;
  }
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_elem.starter_set_elem04 {
    top: 86.2rem;
    right: 0;
    width: 23rem;
  }
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_elem.starter_set_elem05 {
    top: 119rem;
    right: 0;
    width: 34rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_elem.starter_set_elem05 {
    top: 121.8rem;
    right: 0;
    width: 18rem;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_inr {
    width: 112rem;
    margin-inline: auto;
    padding-top: 17rem;
    padding-bottom: 13.5rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_inr {
    width: 62.2rem;
    margin-inline: auto;
    padding-top: 12rem;
    padding-bottom: 10rem;
  }
}

#page-lp04-spss .starter_set_head {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_head {
    width: 53.5rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_head {
    width: 53.4rem;
  }
}

#page-lp04-spss .starter_set_price {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_price {
    width: 46rem;
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_price {
    width: 51rem;
    margin-top: 2.2rem;
  }
}

#page-lp04-spss .starter_set_main {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_main {
    width: 96.5rem;
    margin-top: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_main {
    width: 62.2rem;
    margin-top: 7.8rem;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_contents {
    margin-top: 5rem;
  }
}

#page-lp04-spss .starter_set_contents_head {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents_head {
    line-height: 1;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_contents_head {
    line-height: 1;
    font-size: 3.8rem;
  }
}

#page-lp04-spss .starter_set_contents_list {
  display: grid;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents_list {
    grid-template-columns: repeat(3, 1fr);
    width: 81rem;
    margin: 3rem auto 0;
    border-left: solid 0.1rem #4d0600;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_contents_list {
    grid-template-columns: 1fr;
    row-gap: 4rem;
    width: 51rem;
    margin: 5rem auto 0;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents_list_item {
    text-align: center;
    border-right: solid 0.1rem #4d0600;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_contents_list_item {
    display: grid;
    grid-template-columns: 4.4rem 1fr;
    column-gap: 2.2rem;
    align-items: center;
  }
}

#page-lp04-spss .starter_set_contents_list_item_num {
  display: block;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents_list_item_num {
    width: 3rem;
    margin-inline: auto;
  }
}

#page-lp04-spss .starter_set_contents_list_item_txt {
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents_list_item_txt {
    margin-top: 1.4rem;
    line-height: 1.5em;
    font-size: 1.6rem;
  }
  #page-lp04-spss .starter_set_contents_list_item_txt > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .starter_set_contents_list_item_txt > p:first-of-type {
    margin-top: -0.25em;
  }
  #page-lp04-spss .starter_set_contents_list_item_txt > p:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_contents_list_item_txt {
    line-height: 1.539em;
    font-size: 2.6rem;
  }
  #page-lp04-spss .starter_set_contents_list_item_txt > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .starter_set_contents_list_item_txt > p:first-of-type {
    margin-top: -0.269em;
  }
  #page-lp04-spss .starter_set_contents_list_item_txt > p:last-of-type {
    margin-bottom: -0.269em;
  }
}

#page-lp04-spss .starter_set_contents_color_head {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #ab2138;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents_color_head {
    margin-top: 8rem;
    line-height: 1;
    font-size: 3.8rem;
  }
  #page-lp04-spss .starter_set_contents_color_head > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .starter_set_contents_color_head > p:first-of-type {
    margin-top: 0em;
  }
  #page-lp04-spss .starter_set_contents_color_head > p:last-of-type {
    margin-bottom: 0em;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_contents_color_head {
    margin-top: 10rem;
    line-height: 1;
    font-size: 4.2rem;
  }
  #page-lp04-spss .starter_set_contents_color_head > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .starter_set_contents_color_head > p:first-of-type {
    margin-top: 0em;
  }
  #page-lp04-spss .starter_set_contents_color_head > p:last-of-type {
    margin-bottom: 0em;
  }
}
#page-lp04-spss .starter_set_contents_color_head::before, #page-lp04-spss .starter_set_contents_color_head::after {
  content: "";
  position: absolute;
  top: 0;
  background-color: #ab2138;
  border-radius: 100vmax;
  transform-origin: 50% 50%;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents_color_head::before, #page-lp04-spss .starter_set_contents_color_head::after {
    width: 0.4rem;
    height: 4.2rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_contents_color_head::before, #page-lp04-spss .starter_set_contents_color_head::after {
    width: 0.4rem;
    height: 4.6rem;
  }
}
#page-lp04-spss .starter_set_contents_color_head::before {
  transform: rotate(-27deg);
  left: -4rem;
}
#page-lp04-spss .starter_set_contents_color_head::after {
  transform: rotate(27deg);
  right: -4rem;
}

#page-lp04-spss .starter_set_contents_color_list {
  display: grid;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents_color_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 92rem;
    margin: 5.8rem auto 0;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_contents_color_list {
    grid-template-columns: 1fr;
    row-gap: 5.4rem;
    width: 61rem;
    margin: 10.5rem auto 0;
  }
}

#page-lp04-spss .starter_set_contents_color_list_item {
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents_color_list_item {
    padding: 0 0 7.3rem;
    border-radius: 14.5rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_contents_color_list_item {
    display: grid;
    grid-template-columns: 16.4rem 1fr;
    column-gap: 4rem;
    align-items: center;
    padding: 2.3rem 5rem 2.3rem 6.5rem;
    border-radius: 100vmax;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents_color_list_item_img {
    width: 19rem;
    margin: -2rem auto 0;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_contents_color_list_item_img {
    margin-top: -8.5rem;
  }
}

#page-lp04-spss .starter_set_contents_item_btn {
  position: relative;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents_item_btn {
    width: 22rem;
    margin: 3.5rem auto 0;
  }
}
#page-lp04-spss .starter_set_contents_item_btn a {
  display: block;
  position: relative;
  background-color: #ab2138;
  color: #fff;
  border-radius: 100vmax;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents_item_btn a {
    padding: 1.4rem 4rem;
    line-height: 1.53em;
    font-size: 1.7rem;
    box-shadow: 0px 0.6rem 0px 0px rgba(81, 32, 32, 0.2);
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_contents_item_btn a {
    padding: 2rem 4.5rem;
    line-height: 1.385em;
    font-size: 2.6rem;
    box-shadow: 0px 0.8rem 0px 0px rgba(81, 32, 32, 0.2);
  }
}
#page-lp04-spss .starter_set_contents_item_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: url("/html/user_data/lp/lp04-spss/tullys/img/icon_btn.webp") no-repeat center center/contain;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .starter_set_contents_item_btn a::before {
    right: 3.2rem;
    width: 2.2rem;
    height: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .starter_set_contents_item_btn a::before {
    right: 3.3rem;
    width: 3rem;
    height: 3rem;
  }
}

#page-lp04-spss .about_section {
  position: relative;
  background-color: #785f4b;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_section {
    padding-top: 14.4rem;
    padding-bottom: 14rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_section {
    padding-top: 14.4rem;
    padding-bottom: 14rem;
  }
}
#page-lp04-spss .about_section::before, #page-lp04-spss .about_section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: auto 100%;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_section::before, #page-lp04-spss .about_section::after {
    height: 1.5rem;
    background-image: url(/html/user_data/lp/lp04-spss/tullys/img/about_bg.webp);
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_section::before, #page-lp04-spss .about_section::after {
    height: 1.4rem;
    background-image: url(/html/user_data/lp/lp04-spss/tullys/img/about_bg_sp.webp);
  }
}
#page-lp04-spss .about_section::before {
  top: 1px;
  translate: 0 -100%;
}
#page-lp04-spss .about_section::after {
  bottom: 1px;
  translate: 0 100%;
  scale: 1 -1;
  z-index: 1;
}

#page-lp04-spss .about_elem {
  position: absolute;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_elem {
    top: -16.2rem;
    left: 0;
    width: 36rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_elem {
    top: -13.5rem;
    left: 0;
    width: 25.2rem;
  }
}

#page-lp04-spss .about_inr {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_inr {
    width: 112rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_inr {
    width: 62.2rem;
  }
}

#page-lp04-spss .about_head {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_head {
    width: 55.3rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_head {
    width: 50.8rem;
  }
}

#page-lp04-spss .about_contents {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_contents {
    gap: 6rem;
    margin-top: 10.5rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_contents {
    gap: 10rem;
    margin-top: 8.2rem;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .about_contents_item {
    display: flex;
    gap: 5rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_contents_item {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 6rem;
  }
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_contents_item.-rev {
    flex-direction: row-reverse;
  }
}

#page-lp04-spss .about_contents_item_img {
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_contents_item_img {
    flex-shrink: 0;
    width: 64rem;
    border-radius: 4rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_contents_item_img {
    border-radius: 3.8rem;
  }
}

#page-lp04-spss .about_contents_item_txt {
  color: #fff;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_contents_item_txt {
    flex-grow: 1;
  }
}

#page-lp04-spss .about_contents_item_txt_head {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_contents_item_txt_head {
    padding-bottom: 5rem;
    line-height: 1.5em;
    font-size: 3.6rem;
  }
  #page-lp04-spss .about_contents_item_txt_head > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .about_contents_item_txt_head > p:first-of-type {
    margin-top: -0.25em;
  }
  #page-lp04-spss .about_contents_item_txt_head > p:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_contents_item_txt_head {
    padding-bottom: 4rem;
    line-height: 1.527em;
    font-size: 3.8rem;
  }
  #page-lp04-spss .about_contents_item_txt_head > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .about_contents_item_txt_head > p:first-of-type {
    margin-top: -0.263em;
  }
  #page-lp04-spss .about_contents_item_txt_head > p:last-of-type {
    margin-bottom: -0.263em;
  }
  #page-lp04-spss .about_contents_item_txt_head {
    text-align: center;
  }
}
#page-lp04-spss .about_contents_item_txt_head::before {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_contents_item_txt_head::before {
    left: 0;
    width: 14rem;
    height: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_contents_item_txt_head::before {
    left: 50%;
    translate: -50% 0;
    width: 14rem;
    height: 0.2rem;
  }
}

#page-lp04-spss .about_contents_item_txt_cont {
  font-weight: 500;
  text-align: justify;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_contents_item_txt_cont {
    margin-top: 5rem;
    line-height: 2em;
    font-size: 1.6rem;
  }
  #page-lp04-spss .about_contents_item_txt_cont > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .about_contents_item_txt_cont > p:first-of-type {
    margin-top: -0.5em;
  }
  #page-lp04-spss .about_contents_item_txt_cont > p:last-of-type {
    margin-bottom: -0.5em;
  }
  #page-lp04-spss .about_contents_item_txt_cont {
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_contents_item_txt_cont {
    margin-top: 6rem;
    line-height: 1.847em;
    font-size: 2.6rem;
  }
  #page-lp04-spss .about_contents_item_txt_cont > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .about_contents_item_txt_cont > p:first-of-type {
    margin-top: -0.423em;
  }
  #page-lp04-spss .about_contents_item_txt_cont > p:last-of-type {
    margin-bottom: -0.423em;
  }
  #page-lp04-spss .about_contents_item_txt_cont {
    letter-spacing: 0.03em;
  }
}

#page-lp04-spss .about_contents_btn {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_contents_btn {
    width: 50rem;
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_contents_btn {
    width: 51rem;
    margin-top: -1rem;
  }
}
#page-lp04-spss .about_contents_btn a {
  display: block;
  position: relative;
  background-color: #f0830e;
  color: #fff;
  border-radius: 100vmax;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_contents_btn a {
    padding: 3rem;
    line-height: 1;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_contents_btn a {
    padding: 2rem;
    line-height: 1.462em;
    font-size: 2.6rem;
  }
}
#page-lp04-spss .about_contents_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: url("/html/user_data/lp/lp04-spss/tullys/img/icon_btn.webp") no-repeat center center/contain;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .about_contents_btn a::before {
    right: 3rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .about_contents_btn a::before {
    right: 3rem;
    width: 3rem;
    height: 3rem;
  }
}

#page-lp04-spss .other_sec {
  position: relative;
  background-repeat: repeat;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .other_sec {
    padding-top: 13rem;
    padding-bottom: 12rem;
    background-image: url(/html/user_data/lp/lp04-spss/tullys/img/repeat_bg01.webp);
    background-size: 144rem auto;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .other_sec {
    padding-top: 13rem;
    padding-bottom: 12rem;
    background-image: url(/html/user_data/lp/lp04-spss/tullys/img/repeat_bg01_sp.webp);
    background-size: 75rem auto;
  }
}

#page-lp04-spss .other_elem {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .other_elem01 {
    top: -25.4rem;
    left: 0;
    width: 36rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .other_elem01 {
    top: -20.8rem;
    left: 0;
    width: 25.2rem;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .other_elem02 {
    top: -9.6rem;
    right: 0;
    width: 35rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .other_elem02 {
    top: -11.8rem;
    right: 0;
    width: 24.5rem;
  }
}

#page-lp04-spss .capsule_head {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .capsule_head {
    width: 43.3rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .capsule_head {
    width: 47rem;
  }
}

#page-lp04-spss .capsule_carousel {
  width: 100vw;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .capsule_carousel {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .capsule_carousel {
    margin-top: 8rem;
  }
}

#page-lp04-spss .capsule_carousel_item {
  display: flex;
  width: max-content;
  will-change: transform;
}
#page-lp04-spss .capsule_carousel_item > figure {
  flex: 0 0 auto;
  display: block;
  margin: 0;
}
#page-lp04-spss .capsule_carousel_item > figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
#page-lp04-spss .capsule_carousel_item > figure + figure {
  margin-left: -3rem;
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .capsule_carousel_item01 {
    margin-left: -40rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .capsule_carousel_item01 {
    margin-left: -60rem;
  }
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .capsule_carousel_item01 > figure {
    width: 206.8rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .capsule_carousel_item01 > figure {
    width: 240.2rem;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .capsule_carousel_item02 {
    margin-top: -3rem;
    margin-left: -50rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .capsule_carousel_item02 {
    margin-top: -3rem;
    margin-left: -70rem;
  }
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .capsule_carousel_item02 > figure {
    width: 223.9rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .capsule_carousel_item02 > figure {
    width: 260rem;
  }
}

#page-lp04-spss .capsule_contents {
  margin-inline: auto;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .capsule_contents {
    width: 112rem;
    margin-top: 8rem;
    padding-top: 6rem;
    padding-bottom: 6.8rem;
    background-image: url(/html/user_data/lp/lp04-spss/tullys/img/honkaku_bg.webp);
    box-shadow: 0px 0.6rem 0.5rem 0px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .capsule_contents {
    width: 100%;
    margin-top: 9rem;
    padding: 12.8rem 0 14.8rem;
    background-image: url(/html/user_data/lp/lp04-spss/tullys/img/honkaku_bg_sp.webp);
    box-shadow: 0px 0.6rem 0.5rem 0px rgba(0, 0, 0, 0.1);
  }
}

#page-lp04-spss .honkaku_head {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .honkaku_head {
    width: 60.6rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .honkaku_head {
    width: 47.6rem;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .honkaku_contents_slider {
    margin-top: 4rem;
    overflow: visible;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .honkaku_contents_slider {
    position: relative;
    width: 100%;
    margin-top: 3.5rem;
    overflow: hidden;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .honkaku_contents_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 4.8rem;
    width: 98rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .honkaku_contents_list {
    align-items: stretch;
    padding-top: 6.2rem;
  }
}

#page-lp04-spss .honkaku_contents_list_item {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .honkaku_contents_list_item {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .honkaku_contents_list_item {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 45rem;
    height: auto;
  }
}

#page-lp04-spss .honkaku_contents_list_item_step {
  position: absolute;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .honkaku_contents_list_item_step {
    top: -1rem;
    left: -1rem;
    width: 6rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .honkaku_contents_list_item_step {
    top: -6rem;
    left: -2rem;
    width: 10rem;
  }
}
#page-lp04-spss .honkaku_contents_list_item_step img {
  display: block;
  width: 100%;
  height: auto;
}

#page-lp04-spss .honkaku_contents_list_item_img {
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .honkaku_contents_list_item_img {
    width: 29.4rem;
    border-radius: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .honkaku_contents_list_item_img {
    width: 100%;
    border-radius: 2.4rem;
  }
}
#page-lp04-spss .honkaku_contents_list_item_img img {
  display: block;
  width: 100%;
  height: auto;
}

#page-lp04-spss .honkaku_contents_list_item_txt {
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .honkaku_contents_list_item_txt {
    margin-top: 2.7rem;
    line-height: 1.5em;
    font-size: 2.2rem;
  }
  #page-lp04-spss .honkaku_contents_list_item_txt > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .honkaku_contents_list_item_txt > p:first-of-type {
    margin-top: -0.25em;
  }
  #page-lp04-spss .honkaku_contents_list_item_txt > p:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .honkaku_contents_list_item_txt {
    flex: 1;
    margin-top: 2.4rem;
    line-height: 1.412em;
    font-size: 3.4rem;
  }
  #page-lp04-spss .honkaku_contents_list_item_txt > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .honkaku_contents_list_item_txt > p:first-of-type {
    margin-top: -0.205em;
  }
  #page-lp04-spss .honkaku_contents_list_item_txt > p:last-of-type {
    margin-bottom: -0.205em;
  }
  #page-lp04-spss .honkaku_contents_list_item_txt {
    letter-spacing: 0.1em;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .honkaku_contents_list_item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8.6rem;
    right: -3.4rem;
    width: 1.8rem;
    height: 2.5rem;
    background: url(/html/user_data/lp/lp04-spss/tullys/img/honkaku_arrow.webp) center/contain no-repeat;
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .honkaku_contents_button_wrap {
    position: absolute;
    top: 17.8rem;
    left: 50%;
    display: flex;
    justify-content: space-between;
    width: 55rem;
    translate: -50% 0;
    z-index: 2;
    pointer-events: none;
  }
  #page-lp04-spss .honkaku_contents_button {
    display: grid;
    place-items: center;
    width: 7rem;
    height: 7rem;
    background-color: #fff;
    border-radius: 100vmax;
    box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    cursor: pointer;
  }
  #page-lp04-spss .honkaku_contents_button img {
    display: block;
    width: 1.8rem;
    height: auto;
  }
  #page-lp04-spss .honkaku_contents_button-prev img {
    scale: -1 1;
  }
}
#page-lp04-spss .cafehoudai_section {
  position: relative;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .cafehoudai_section {
    padding-top: 12rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .cafehoudai_section {
    padding-top: 11rem;
  }
}

#page-lp04-spss .cafehoudai_head {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .cafehoudai_head {
    width: 70.3rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .cafehoudai_head {
    width: 47.5rem;
  }
}

#page-lp04-spss .cafehoudai_contents {
  width: 100%;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .cafehoudai_contents {
    width: 100vw;
    margin: 7rem auto 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .cafehoudai_contents {
    width: 71rem;
    margin: 8rem auto 0;
  }
}

#page-lp04-spss .cafehoudai_contents_img {
  display: block;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .cafehoudai_contents_img {
    position: relative;
    left: 50%;
    width: 115.2777777778vw;
    translate: -50% 0;
  }
}
@media screen and (min-width: 1440px) {
  #page-lp04-spss .cafehoudai_contents_img {
    width: 1660px;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .cafehoudai_contents_img {
    width: 71rem;
  }
}
#page-lp04-spss .cafehoudai_contents_img img {
  max-width: inherit;
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .cafehoudai_contents_btn {
    width: 42rem;
    margin: 6rem auto 0;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .cafehoudai_contents_btn {
    width: 51rem;
    margin: 10rem auto 0;
  }
}
#page-lp04-spss .cafehoudai_contents_btn a {
  text-align: center;
  box-shadow: none;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .cafehoudai_contents_btn a {
    padding: 3rem 0;
    line-height: 1;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .cafehoudai_contents_btn a {
    padding: 2.2rem 0;
    line-height: 1.462em;
    font-size: 2.6rem;
  }
}

#page-lp04-spss .bottom_section {
  position: relative;
  background-repeat: repeat;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .bottom_section {
    padding-top: 10rem;
    padding-bottom: 20.8rem;
    background-image: url(/html/user_data/lp/lp04-spss/tullys/img/repeat_bg02.webp);
    background-size: 75rem auto;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .bottom_section {
    padding-top: 10rem;
    padding-bottom: 17rem;
    background-image: url(/html/user_data/lp/lp04-spss/tullys/img/repeat_bg02_sp.webp);
    background-size: 75rem auto;
  }
}

#page-lp04-spss .bottom_elem {
  position: absolute;
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .bottom_elem01 {
    top: -15.6rem;
    right: 0;
    width: 26rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .bottom_elem01 {
    top: -14.2rem;
    right: 0;
    width: 18.2rem;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .bottom_elem02 {
    top: 33rem;
    left: 0;
    width: 27.8rem;
  }
}

#page-lp04-spss .introduction_head {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .introduction_head {
    width: 65.4rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .introduction_head {
    width: 42rem;
  }
}

#page-lp04-spss .introduction_contents_list {
  display: grid;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .introduction_contents_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 3rem;
    width: 78rem;
    margin: 8rem auto 0;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .introduction_contents_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2rem;
    width: 56rem;
    margin: 6rem auto 0;
  }
}

#page-lp04-spss .introduction_contents_list_item {
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .introduction_contents_list_item {
    border-radius: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .introduction_contents_list_item {
    border-radius: 2.5rem;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .sec_faq {
    padding: 12rem 0 6rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .sec_faq {
    padding: 12rem 0 6rem;
  }
}

#page-lp04-spss .faq_cont {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_cont {
    width: 96rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_cont {
    width: 62.2rem;
  }
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_cont + .faq_cont {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_cont + .faq_cont {
    margin-top: 8rem;
  }
}

#page-lp04-spss .faq_cont_head {
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_cont_head {
    margin-bottom: 6rem;
    line-height: 1.685em;
    font-size: 3.8rem;
  }
  #page-lp04-spss .faq_cont_head > h2 {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_cont_head > h2:first-of-type {
    margin-top: -0.342em;
  }
  #page-lp04-spss .faq_cont_head > h2:last-of-type {
    margin-bottom: -0.342em;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_cont_head {
    margin-bottom: 6rem;
    line-height: 1.696em;
    font-size: 4.6rem;
  }
  #page-lp04-spss .faq_cont_head > h2 {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_cont_head > h2:first-of-type {
    margin-top: -0.347em;
  }
  #page-lp04-spss .faq_cont_head > h2:last-of-type {
    margin-bottom: -0.347em;
  }
}

#page-lp04-spss .faq_cont_head_sub {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_cont_head_sub {
    margin-bottom: 4rem;
    line-height: 1.734em;
    font-size: 3rem;
  }
  #page-lp04-spss .faq_cont_head_sub > h2 {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_cont_head_sub > h2:first-of-type {
    margin-top: -0.366em;
  }
  #page-lp04-spss .faq_cont_head_sub > h2:last-of-type {
    margin-bottom: -0.366em;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_cont_head_sub {
    margin-bottom: 6rem;
    line-height: 1.723em;
    font-size: 3.6rem;
  }
  #page-lp04-spss .faq_cont_head_sub > h2 {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_cont_head_sub > h2:first-of-type {
    margin-top: -0.361em;
  }
  #page-lp04-spss .faq_cont_head_sub > h2:last-of-type {
    margin-bottom: -0.361em;
  }
}

#page-lp04-spss .faq_item {
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item {
    border-radius: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item {
    border-radius: 2rem;
  }
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item + .faq_item {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item + .faq_item {
    margin-top: 2rem;
  }
}

#page-lp04-spss .faq_item_cont {
  display: flex;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_cont {
    column-gap: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item_cont {
    column-gap: 2.5rem;
  }
}
#page-lp04-spss .faq_item_cont i {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_cont i {
    width: 5rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item_cont i {
    width: 6rem;
  }
}
#page-lp04-spss .faq_item_cont > *:not(i) {
  min-width: 0;
}
#page-lp04-spss .faq_item_cont a {
  overflow-wrap: anywhere;
  word-break: break-all;
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_tel_link {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
    cursor: text;
  }
}

#page-lp04-spss .faq_item_q {
  position: relative;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  color: #323232;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_q {
    padding: 2rem 9.5rem 2rem 2.8rem;
    line-height: 1.334em;
    font-size: 1.8rem;
  }
  #page-lp04-spss .faq_item_q > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_item_q > p:first-of-type {
    margin-top: -0.166em;
  }
  #page-lp04-spss .faq_item_q > p:last-of-type {
    margin-bottom: -0.166em;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item_q {
    min-height: 14.4rem;
    padding: 2rem 10.5rem 2rem 3.5rem;
    line-height: 1.667em;
    font-size: 2.4rem;
  }
  #page-lp04-spss .faq_item_q > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_item_q > p:first-of-type {
    margin-top: -0.333em;
  }
  #page-lp04-spss .faq_item_q > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
#page-lp04-spss .faq_item_q::before, #page-lp04-spss .faq_item_q::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background-color: #645045;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_q::before, #page-lp04-spss .faq_item_q::after {
    right: 4rem;
    width: 2rem;
    height: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item_q::before, #page-lp04-spss .faq_item_q::after {
    right: 3.5rem;
    width: 3rem;
    height: 0.4rem;
  }
}
#page-lp04-spss .faq_item_q::after {
  transform-origin: 50% 50%;
  transition: rotate 0.5s;
  rotate: 90deg;
}
#page-lp04-spss .faq_item_q.active::after {
  rotate: 0deg;
}
#page-lp04-spss .faq_item_q.active .faq_item_a {
  transition: max-height 0.6s ease-out;
}
#page-lp04-spss .faq_item_q p {
  pointer-events: none;
}

#page-lp04-spss .faq_item_a {
  max-height: 0;
  overflow: hidden;
  display: flex;
  font-weight: 500;
  transition: all 0.5s;
  transition: max-height 0.4s ease-out;
  color: #323232;
}

#page-lp04-spss .faq_item_a_inr {
  width: 100%;
  border-top: solid #f5f1e6;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_a_inr {
    padding-top: 3.2rem;
    padding-right: 4rem;
    padding-left: 2.8rem;
    padding-bottom: 5rem;
    line-height: 1.715em;
    font-size: 1.4rem;
  }
  #page-lp04-spss .faq_item_a_inr > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_item_a_inr > p:first-of-type {
    margin-top: -0.357em;
  }
  #page-lp04-spss .faq_item_a_inr > p:last-of-type {
    margin-bottom: -0.357em;
  }
  #page-lp04-spss .faq_item_a_inr {
    border-top-width: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item_a_inr {
    padding-top: 6rem;
    padding-right: 10.5rem;
    padding-left: 3.5rem;
    padding-bottom: 6rem;
    line-height: 1.667em;
    font-size: 2.4rem;
  }
  #page-lp04-spss .faq_item_a_inr > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_item_a_inr > p:first-of-type {
    margin-top: -0.333em;
  }
  #page-lp04-spss .faq_item_a_inr > p:last-of-type {
    margin-bottom: -0.333em;
  }
  #page-lp04-spss .faq_item_a_inr {
    border-top-width: 0.2rem;
  }
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_a_inr p {
    padding-top: 0.6rem;
  }
}
#page-lp04-spss .faq_item_a_inr p + p {
  margin-top: 1em;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_a_inr p + dl {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item_a_inr p + dl {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_a_inr p + ul {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item_a_inr p + ul {
    margin-top: 4rem;
  }
}
#page-lp04-spss .faq_item_a_inr dl dt {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_a_inr dl dt {
    line-height: 1.715em;
    font-size: 1.4rem;
  }
  #page-lp04-spss .faq_item_a_inr dl dt > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_item_a_inr dl dt > p:first-of-type {
    margin-top: -0.357em;
  }
  #page-lp04-spss .faq_item_a_inr dl dt > p:last-of-type {
    margin-bottom: -0.357em;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item_a_inr dl dt {
    line-height: 1.667em;
    font-size: 2.4rem;
  }
  #page-lp04-spss .faq_item_a_inr dl dt > p {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_item_a_inr dl dt > p:first-of-type {
    margin-top: -0.333em;
  }
  #page-lp04-spss .faq_item_a_inr dl dt > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_a_inr dl dd {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item_a_inr dl dd {
    padding-top: 4rem;
  }
}
#page-lp04-spss .faq_item_a_inr ol {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_a_inr ol {
    line-height: 1.715em;
    font-size: 1.4rem;
  }
  #page-lp04-spss .faq_item_a_inr ol > li {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_item_a_inr ol > li:first-of-type {
    margin-top: -0.357em;
  }
  #page-lp04-spss .faq_item_a_inr ol > li:last-of-type {
    margin-bottom: -0.357em;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item_a_inr ol {
    line-height: 1.667em;
    font-size: 2.4rem;
  }
  #page-lp04-spss .faq_item_a_inr ol > li {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_item_a_inr ol > li:first-of-type {
    margin-top: -0.333em;
  }
  #page-lp04-spss .faq_item_a_inr ol > li:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_a_inr ol + ol {
    margin-top: 1em;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item_a_inr ol + ol {
    margin-top: 5.5rem;
  }
}
#page-lp04-spss .faq_item_a_inr ol li {
  padding-left: 1em;
  text-indent: -1em;
}
#page-lp04-spss .faq_item_a_inr ul {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_a_inr ul {
    line-height: 1.715em;
    font-size: 1.4rem;
  }
  #page-lp04-spss .faq_item_a_inr ul > li {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_item_a_inr ul > li:first-of-type {
    margin-top: -0.357em;
  }
  #page-lp04-spss .faq_item_a_inr ul > li:last-of-type {
    margin-bottom: -0.357em;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item_a_inr ul {
    line-height: 1.667em;
    font-size: 2.4rem;
  }
  #page-lp04-spss .faq_item_a_inr ul > li {
    line-height: inherit;
    font: inherit;
  }
  #page-lp04-spss .faq_item_a_inr ul > li:first-of-type {
    margin-top: -0.333em;
  }
  #page-lp04-spss .faq_item_a_inr ul > li:last-of-type {
    margin-bottom: -0.333em;
  }
}
#page-lp04-spss .faq_item_a_inr ul > li {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .faq_item_a_inr ul + p {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .faq_item_a_inr ul + p {
    margin-top: 5rem;
  }
}
#page-lp04-spss .faq_item_a_inr a {
  color: #ab2138;
}

#page-lp04-spss .bottom_starter_set {
  position: relative;
}

#page-lp04-spss .bottom_starter_set_elem {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .bottom_starter_set_elem01 {
    top: -10.3rem;
    left: 0;
    width: 50.6rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .bottom_starter_set_elem01 {
    top: -13.8rem;
    left: 0;
    width: 24.5rem;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .bottom_starter_set_elem02 {
    top: 8.5rem;
    right: 0;
    width: 43.6rem;
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .bottom_starter_set_elem02 {
    top: 4.5rem;
    right: 0;
    width: 18rem;
  }
}

@media screen and (min-width: 769px) {
  #page-lp04-spss .bottom_starter_set_elem03 {
    bottom: -23.6rem;
    left: 0;
    width: 23rem;
  }
}

#page-lp04-spss .bottom_starter_set .starter_set_inr {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  #page-lp04-spss .bottom_starter_set .starter_set_inr {
    width: 112rem;
    margin: 6rem auto 0;
    padding-top: 7.8rem;
    padding-bottom: 8rem;
    background-image: url(/html/user_data/lp/lp04-spss/tullys/img/bottom_starter_set_bg.webp);
  }
}
@media screen and (max-width: 768px) {
  #page-lp04-spss .bottom_starter_set .starter_set_inr {
    width: 69rem;
    margin: 6rem auto 0;
    padding-top: 8rem;
    padding-bottom: 10rem;
    background-image: url(/html/user_data/lp/lp04-spss/tullys/img/bottom_starter_set_bg_sp.webp);
  }
}

.btn_buy {
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease-out, visibility 0.5s step-end;
}
@media screen and (min-width: 769px) {
  .btn_buy {
    position: fixed;
    right: 4rem;
    bottom: 4rem;
    width: 22.6rem;
  }
}
@media screen and (max-width: 768px) {
  .btn_buy {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    transition: opacity 0.5s ease-out, visibility 0.5s step-start;
    box-shadow: 0 -0.6rem 1rem 0px rgba(0, 0, 0, 0.2);
  }
}
.btn_buy.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.5s ease-out, visibility 0.5s step-start;
}
.btn_buy a {
  display: block;
  transition: opacity 0.5s;
}
.btn_buy a:hover {
  opacity: 0.8;
}
.btn_buy img {
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  #footer {
    margin-top: -8.8rem;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    margin-top: -5rem;
  }
}
