@charset "UTF-8";
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

html {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  background: #fff;
  color: #333;
  overflow-y: auto;
}

body {
  font-size: 1.4rem;
  overflow-x: hidden;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
}

main {
  display: block;
  position: relative;
}

section {
  display: block;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

b, strong, h1, h2, h3, h4, h5 {
  font-weight: 700;
}

sup {
  top: -1em;
}

/*wrap------------*/
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .wrap {
    max-width: 100%;
  }
}

.wrap_fulid {
  width: 100%;
  position: relative;
}

main {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 60px;
  }
}

/*====================
  Header
====================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #FFF;
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  .header {
    border: none;
    height: 60px;
  }
}
.header.scrolled {
  background: #FFF;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.header .header_container {
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 70px;
}
@media screen and (max-width: 768px) {
  .header .header_container {
    height: 60px;
    padding: 0 10px;
  }
}
.header .header_logo img {
  height: 35px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .header .header_logo img {
    height: 22px;
  }
}
.header .header_nav {
  margin-left: auto;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .header .header_nav {
    display: none;
  }
}
.header .header_nav .nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 0px 20px;
  margin: 0;
  padding: 0;
}
.header .header_nav .nav_list .nav_item a {
  color: #333;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.05em;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header .header_nav .nav_list .nav_item a:hover {
  color: #333;
}
.header .header_nav .nav_list .nav_item a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#6AE0FF), to(#FF97FD));
  background: -webkit-linear-gradient(left, #6AE0FF, #FF97FD);
  background: linear-gradient(90deg, #6AE0FF, #FF97FD);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.header .header_nav .nav_list .nav_item a:hover::after {
  width: 100%;
}
.header .header_cta .cta_button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 48px;
  background: #2B0A49;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
  border-radius: 50px;
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header .header_cta .cta_button {
    padding: 8px 0px;
    font-size: 3.2vw;
    min-width: 110px;
  }
}
.header .header_cta .cta_button::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: -webkit-linear-gradient(45deg, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF);
  background: linear-gradient(45deg, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF);
  background-size: 400% 400%;
  border-radius: 50px;
  z-index: -1;
  -webkit-animation: rainbow-smooth 10s ease-in-out infinite;
          animation: rainbow-smooth 10s ease-in-out infinite;
}
.header .header_cta .cta_button:hover {
  -webkit-box-shadow: 0 0 10px rgba(106, 224, 255, 0.8), 0 0 20px rgba(106, 224, 255, 0.6), 0 0 30px rgba(106, 224, 255, 0.4);
          box-shadow: 0 0 10px rgba(106, 224, 255, 0.8), 0 0 20px rgba(106, 224, 255, 0.6), 0 0 30px rgba(106, 224, 255, 0.4);
}

/*====================
  SMS Sub Header
====================*/
.sub_header {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #231815;
  z-index: 99998;
}
@media screen and (max-width: 768px) {
  .sub_header {
    top: 60px;
    height: auto;
  }
}
.sub_header .sub_header_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sub_header .sub_header_container {
    padding: 5px 10px 5px 15px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
    height: auto;
    min-height: 40px;
  }
}
.sub_header .sub_header_logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.sub_header .sub_header_logo .sub_header_logo_img {
  width: auto;
  height: 28px;
}
@media screen and (max-width: 768px) {
  .sub_header .sub_header_logo .sub_header_logo_img {
    height: auto;
    max-width: 196px;
    max-height: 18px;
  }
}
.sub_header .sub_header_nav .sub_nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 0 24px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .sub_header .sub_header_nav .sub_nav_list {
    display: none;
  }
}
.sub_header .sub_header_nav .sub_nav_list .sub_nav_item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.08em;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .sub_header .sub_header_nav .sub_nav_list .sub_nav_item a {
    font-size: 3.7333333333vw;
  }
}
.sub_header .sub_header_nav .sub_nav_list .sub_nav_item a:hover {
  color: #ffffff;
}
.sub_header .sub_header_nav .sub_nav_list .sub_nav_item a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF6B35;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media (hover: hover) {
  .sub_header .sub_header_nav .sub_nav_list .sub_nav_item a:hover::after {
    width: 100%;
  }
}
.sub_header .sub_nav_toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .sub_header .sub_nav_toggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    margin-left: auto;
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
  }
  .sub_header .sub_nav_toggle .sub_nav_toggle_icon {
    display: block;
    width: 14px;
    height: 10px;
    position: relative;
  }
  .sub_header .sub_nav_toggle .sub_nav_toggle_icon::before, .sub_header .sub_nav_toggle .sub_nav_toggle_icon::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    position: absolute;
    left: 0;
    -webkit-transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
  .sub_header .sub_nav_toggle .sub_nav_toggle_icon::before {
    top: 0;
  }
  .sub_header .sub_nav_toggle .sub_nav_toggle_icon::after {
    bottom: 0;
  }
  .sub_header .sub_nav_toggle .sub_nav_toggle_icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .sub_header .sub_nav_toggle[aria-expanded=true] .sub_nav_toggle_icon::before {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .sub_header .sub_nav_toggle[aria-expanded=true] .sub_nav_toggle_icon::after {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(-45deg);
            transform: translateY(50%) rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  .sub_header .sub_header_nav {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    -webkit-transition: grid-template-rows 0.3s ease;
    transition: grid-template-rows 0.3s ease;
    transition: grid-template-rows 0.3s ease, -ms-grid-rows 0.3s ease;
    width: 100%;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .sub_header .sub_header_nav.is-open {
    grid-template-rows: 1fr;
  }
  .sub_header .sub_header_nav .sub_nav_list {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }
  .sub_header .sub_header_nav .sub_nav_list .sub_nav_item a {
    display: block;
    padding: 10px 15px;
  }
  .sub_header .sub_header_nav .sub_nav_list .sub_nav_item:nth-child(1) a, .sub_header .sub_header_nav .sub_nav_list .sub_nav_item:nth-child(2) a {
    padding-top: 18px;
  }
  .sub_header .sub_header_nav .sub_nav_list .sub_nav_item:nth-last-child(1) a, .sub_header .sub_header_nav .sub_nav_list .sub_nav_item:nth-last-child(2) a {
    padding-bottom: 18px;
  }
}

/*====================
  Footer
====================*/
.footer {
  background: #231815;
  padding: 60px 0 30px;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 15px 20px;
  }
}
.footer .footer_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer .footer_content {
    gap: 30px;
  }
}
.footer .footer_logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.footer .footer_logo .footer_logo_img {
  max-width: 540px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer .footer_logo .footer_logo_img {
    max-width: 200px;
  }
}
.footer .footer_logo .footer_tagline {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer .footer_logo .footer_tagline {
    font-size: 3.7333333333vw;
  }
}
.footer .footer_nav .footer_nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .footer .footer_nav .footer_nav_list {
    gap: 20px;
  }
}
.footer .footer_nav .footer_nav_list .footer_nav_item .footer_nav_link {
  color: #FFF;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 400;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .footer_nav .footer_nav_list .footer_nav_item .footer_nav_link {
    font-size: 3.4666666667vw;
  }
}
.footer .footer_nav .footer_nav_list .footer_nav_item .footer_nav_link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#f093fb), to(#f5576c));
  background: -webkit-linear-gradient(left, #f093fb 0%, #f5576c 100%);
  background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer .footer_nav .footer_nav_list .footer_nav_item .footer_nav_link:hover {
  color: #ffffff;
}
.footer .footer_nav .footer_nav_list .footer_nav_item .footer_nav_link:hover::after {
  width: 100%;
}
.footer .footer_nav .footer_nav_list .footer_nav_item:not(:last-child)::after {
  content: "|";
  color: #FFF;
  margin-left: 20px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer .footer_nav .footer_nav_list .footer_nav_item:not(:last-child)::after {
    font-size: 3.4666666667vw;
  }
}
.footer .footer_copyright {
  width: 100%;
}
.footer .footer_copyright .copyright_text {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #FFF;
  margin: 0;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .footer .footer_copyright .copyright_text {
    font-size: 2.9333333333vw;
  }
}

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

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

/*====================
    Animations
  ====================*/
.fadein {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}

.fadein.is-animated {
  opacity: 1;
}

.fadeinUp {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.fadeinUp.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadeinBound {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}

.fadeinBound.is-animated {
  opacity: 1;
  -webkit-animation: bounce-loop 1.5s ease-out infinite;
          animation: bounce-loop 1.5s ease-out infinite;
}

.delay-01s {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.delay-02s {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay-03s {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.delay-04s {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay-05s {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.delay-06s {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.delay-07s {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.delay-08s {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.delay-09s {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.delay-10s {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

/*====================
   etc
  ====================*/
/* アンカーリンク用スクロール余白調整 */
.anchor_link {
  scroll-margin-top: 80px;
  /* ヘッダー高さ + 余白 */
}
@media screen and (max-width: 768px) {
  .anchor_link {
    scroll-margin-top: 60px;
    /* スマホ用ヘッダー高さ + 余白 */
  }
}

/*====================
  Animations
====================*/
@-webkit-keyframes bounce-loop {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@keyframes bounce-loop {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@-webkit-keyframes rainbow-smooth {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes rainbow-smooth {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.fv_general_section {
  position: relative;
  background: url("../img/common/bg_fv.png") #231815 center center/cover no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  padding: 15px;
  min-height: 200px;
}
.fv_general_section h1 {
  font-size: 36px;
  font-weight: 700;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .fv_general_section h1 {
    font-size: 6.9333333333vw;
  }
}

/*wrap------------*/
.wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 30px 0 100px;
}
@media screen and (max-width: 768px) {
  .wrap {
    max-width: 100%;
    padding: 20px 15px 40px;
  }
}

.privacy_policy_page {
  max-width: 1000px;
  margin: 60px auto 80px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .privacy_policy_page {
    margin: 24px auto 48px;
    padding: 0 16px;
  }
}
.privacy_policy_page .privacy_policy_title_block {
  text-align: left;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid #e0e0e0;
}
@media screen and (max-width: 768px) {
  .privacy_policy_page .privacy_policy_title_block {
    margin-bottom: 28px;
    padding-bottom: 20px;
  }
}
.privacy_policy_page .privacy_policy_title_block h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .privacy_policy_page .privacy_policy_title_block h2 {
    font-size: 6.4vw;
  }
}
.privacy_policy_page .privacy_policy_title_block h2 .privacy_policy_title_sub {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin-top: 6px;
  letter-spacing: 0.1em;
}
.privacy_policy_page .privacy_policy_lead {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 40px;
  padding: 24px 28px;
  background: #f8f9fb;
  border-left: 4px solid #CCC;
  border-radius: 0 6px 6px 0;
}
@media screen and (max-width: 768px) {
  .privacy_policy_page .privacy_policy_lead {
    padding: 16px 18px;
    margin-bottom: 28px;
    font-size: 3.7333333333vw;
  }
}
.privacy_policy_page p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 24px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .privacy_policy_page p {
    font-size: 3.7333333333vw;
    margin-bottom: 18px;
  }
}
.privacy_policy_page p.right {
  text-align: right;
  margin-top: 48px;
  font-size: 13px;
  color: #777;
}
@media screen and (max-width: 768px) {
  .privacy_policy_page p.right {
    margin-top: 32px;
  }
}
.privacy_policy_page h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 48px 0 16px;
  padding: 12px 16px;
  background: -webkit-gradient(linear, left top, right top, from(#eee), to(transparent));
  background: -webkit-linear-gradient(left, #eee 0%, transparent 100%);
  background: linear-gradient(90deg, #eee 0%, transparent 100%);
  border-left: 4px solid #CCC;
  border-radius: 0 4px 4px 0;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .privacy_policy_page h3 {
    font-size: 4.2666666667vw;
    margin: 32px 0 12px;
    padding: 10px 12px;
  }
}
.privacy_policy_page h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #CCC;
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .privacy_policy_page h4 {
    font-size: 3.7333333333vw;
    margin: 24px 0 10px;
  }
}
.privacy_policy_page h4::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 80%;
  background: #CCC;
  position: absolute;
  left: 0;
  top: 0;
}
.privacy_policy_page h5 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .privacy_policy_page h5 {
    font-size: 3.7333333333vw;
  }
}
.privacy_policy_page ul,
.privacy_policy_page ol {
  margin: 0 0 24px 0;
  padding: 0 0 0 24px;
}
@media screen and (max-width: 768px) {
  .privacy_policy_page ul,
  .privacy_policy_page ol {
    margin-bottom: 18px;
  }
}
.privacy_policy_page ul li,
.privacy_policy_page ol li {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .privacy_policy_page ul li,
  .privacy_policy_page ol li {
    font-size: 3.7333333333vw;
  }
}
.privacy_policy_page ul {
  list-style: none;
  padding-left: 0;
}
.privacy_policy_page ul li {
  padding-left: 20px;
  position: relative;
}
.privacy_policy_page ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
}
.privacy_policy_page ol {
  list-style: decimal;
}
.privacy_policy_page a {
  color: #4a90d9;
  text-decoration: underline;
}
.privacy_policy_page a:hover {
  color: #2a6db5;
}/*# sourceMappingURL=style.css.map */