@charset "UTF-8";
:root {
  --primary: #ffcc33;
  --primary-light: #fff4d2;
  --primary-vivid: #f6af3b;
  --primary-vivid-dark: #ffa511;
  --primary-bg: #ffdd77;
  --primary-ex-light: #ffe38e;
  --yellow: #ffd24a;
  --yellow-light: #ffeebb;
  --orange: #f1914d;
  --orange-dark: #f08437;
  --orange-light: #f8c8a6;
  --black: #000;
  --white: #fff;
  --gray: #d7d4d2;
  --red: #e60012;
  --red-light: #f37e53;
  --pink: #fdafbe;
  --pink-vivid: #fc97ab;
  --pink-light: #fed1da;
  --pink-ex-light: #fee8ec;
  --pink-dark: #fc8ca2;
  --header-pink: #fdbac7;
  --shadow-pink: #fdc5d1;
  --white-pink: #fff3f6;
  --text: #3f3f3f;
  --green: #8dc556;
  --green-light: #cce5b4;
  --shadow: #f6af3b;
  --blue: #4977fa;
  --blue-vivid: #5d86fb;
  --blue-light2: #399ED5;
  --blue-light: #2b98d2;
  --blue-ex-light: #aad6ed;
  --blue-ex-light2: #e3f1f9;
  --brown: #4c3c35;
  --slide-bg: #fff;
  --border: #d7d4d2;
  --border-blue: #c6e3f3;
}
/*!
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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;
}
html {
  position: relative;
  font-size: 62.5%;
  min-height: 100%;
  min-width: 320px;
  height: -webkit-fill-available;
}
body {
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 4vw;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.4s ease, color 0.4s ease, border 0.4s ease;
}
a:hover {
  opacity: 0.7;
}
video {
  max-width: 100%;
  vertical-align: middle;
}
li {
  list-style: none;
}
address {
  font-style: normal;
}
* {
  word-break: break-all;
}
body, tooltip, popover {
  font-family: "Noto Sans JP", sans-serif;
}
code, kbd, pre, samp {
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.invisible {
  opacity: 0;
}
.animated {
  animation-timing-function: ease;
  animation-duration: 0.6s;
  animation-fill-mode: both;
}
@media screen and (min-width: 768px) {
  .anime-delay-1 {
    animation-delay: 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .anime-delay-2 {
    animation-delay: 0.6s;
  }
}
@media screen and (min-width: 768px) {
  .anime-delay-3 {
    animation-delay: 0.9s;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
.fadeInUp {
  animation-name: fadeInUp;
}
.slideBg {
  background-image: linear-gradient(90deg, var(--slide-bg) 50%, rgba(255, 255, 255, 0) 50%);
  background-size: 200%;
  background-position: right;
  animation-name: slideBg;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideBg {
  0% {
    opacity: 0;
    background-position: right;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    background-position: left;
  }
}
@keyframes infinityScrollY {
  0% {
    background-position: left 0 top 0;
  }
  100% {
    background-position: left 0 top 100%;
  }
}
@keyframes infinityScrollX {
  0% {
    background-position: left 100% bottom 0;
  }
  100% {
    background-position: left 0 bottom 0;
  }
}
.header {
  z-index: 100000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
}
@media screen and (min-width: 768px) {
  .header + * {
    padding-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .header {
    padding: 12px 2.2% 11px;
    min-height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .header_inner {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    overflow: hidden;
    transition: left 0.3s;
    background: var(--primary);
  }
}
@media screen and (min-width: 768px) {
  .header h1 {
    width: 107px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .header h1 {
    padding: 7.2vw 10.6666666667vw;
    width: 64.5333333333vw;
  }
}
.header h1 img {
  vertical-align: middle;
  width: 100%;
}
.header h1 a {
  display: flex;
}
.header_nav {
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .header_nav {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header_nav {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .header_nav {
    font-size: 4.8vw;
    overflow-y: auto;
    height: calc(100vh - 21.0666666667vw);
  }
}
@media screen and (min-width: 768px) {
  .header_nav_list {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .header_nav_list li {
    border-bottom: 1px solid var(--white);
  }
}
@media screen and (max-width: 767px) {
  .header_nav_list li:first-child {
    border-top: 1px solid var(--white);
  }
}
.header_nav_list li:not(:first-child) {
  position: relative;
}
@media screen and (min-width: 768px) {
  .header_nav_list li:not(:first-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 100%;
    background: var(--white);
  }
}
.header_nav_list li a {
  display: block;
}
@media screen and (min-width: 768px) {
  .header_nav_list li a {
    padding: 0 1em;
  }
}
@media screen and (max-width: 767px) {
  .header_nav_list li a {
    padding: 6.4vw 10.6666666667vw 5.8666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .header_nav_btns {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header_nav_btns {
    padding: 10.6666666667vw 9.6vw 32vw;
  }
}
.header_nav_btn a {
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .header_nav_btn a {
    display: block;
    padding: 5.3333333333vw 5.3333333333vw 5.3333333333vw 16vw;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .header_nav_btn + .header_nav_btn {
    margin-top: 4.2666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .header_nav_btn:nth-of-type(1) a {
    border: 2px solid var(--blue);
    background: url("/images/common/icon-camera.svg") no-repeat left 6.4vw center/6.4vw, var(--blue-vivid);
  }
}
@media screen and (max-width: 767px) {
  .header_nav_btn:nth-of-type(2) a {
    border: 2px solid var(--orange-dark);
    background: url("/images/common/icon-play.svg") no-repeat left 6.4vw center/6.4vw, var(--orange);
  }
}
@media screen and (max-width: 767px) {
  .header_nav_btn:nth-of-type(3) a {
    border: 2px solid var(--pink-vivid);
    background: url("/images/common/icon-bouquet.svg") no-repeat left 6.4vw center/6.4vw, var(--pink-dark);
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    z-index: 10000;
    position: absolute;
    top: 3.4666666667vw;
    right: 4vw;
    width: 14.4vw;
    height: 14.4vw;
    border-radius: 50%;
    background: var(--primary);
    transition: background 0.3s;
  }
}
@media screen and (max-width: 767px) {
  .hamburger span {
    position: absolute;
    left: calc(50% - 3.7333333333vw);
    display: block;
    width: 7.4666666667vw;
    height: 0.5333333333vw;
    background: #000;
  }
}
@media screen and (max-width: 767px) {
  .hamburger span:nth-of-type(1) {
    top: 4.2666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .hamburger span:nth-of-type(2) {
    top: 6.9333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .hamburger span:nth-of-type(3) {
    top: 9.6vw;
  }
}
.header-pink {
  background: var(--header-pink);
}
.header-pink .header_inner {
  background: var(--header-pink);
}
.header-pink .hamburger {
  background: var(--header-pink);
}
@media screen and (max-width: 767px) {
  .header.active .header_inner {
    left: 0;
  }
}
.header.active .hamburger {
  background: rgba(255, 255, 255, 0.7);
}
.footer {
  padding-bottom: 0 !important;
}
.footer_box {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .footer_box_inner {
    width: 86.5% !important;
  }
}
@media screen and (max-width: 767px) {
  .footer_box_inner {
    padding: 6.4vw 5.3333333333vw 5.3333333333vw !important;
    width: 100%;
  }
}
.footer_text {
  font-weight: 700;
  line-height: 1.6;
  word-break: keep-all !important;
}
@media screen and (min-width: 768px) {
  .footer_text {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .footer_text {
    font-size: 5.3333333333vw;
  }
}
.footer_text span {
  z-index: 1;
  position: relative;
  display: inline-block;
}
.footer_text span::after {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  bottom: 0.3em;
  left: 0;
  width: 100%;
  background: var(--yellow-light);
}
@media screen and (min-width: 768px) {
  .footer_text span::after {
    height: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer_text span::after {
    height: 1.3333333333vw;
  }
}
.footer_info {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .footer_info {
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer_info {
    justify-content: center;
  }
}
.footer_tel {
  font-weight: 700;
  line-height: 1;
  word-break: keep-all !important;
}
@media screen and (min-width: 768px) {
  .footer_tel {
    margin-top: 20px;
    font-size: 93px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer_tel {
    font-size: 7.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .footer_tel {
    margin-top: 4.2666666667vw;
    font-size: 9.8666666667vw;
  }
}
.footer_tel span {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer_tel span {
    font-size: 60px;
    padding-right: 0.3em;
  }
}
@media screen and (max-width: 767px) {
  .footer_tel span {
    font-size: 5.8666666667vw;
  }
}
.footer_reception {
  margin-bottom: 0.5em;
  font-weight: 600;
  border: 1px solid var(--border);
}
@media screen and (min-width: 768px) {
  .footer_reception {
    font-size: 20px;
    padding: 5px 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer_reception {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 30px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer_reception {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .footer_reception dt {
    margin-right: 1em;
  }
}
.footer_copy {
  padding: 1.5em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer_copy {
    margin-top: 103px;
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .footer_copy {
    margin-top: 6.4vw;
    font-size: 2.9333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .footer.bg-pink .content_box {
    box-shadow: 10px 10px 0 var(--shadow-pink);
  }
}
@media screen and (max-width: 767px) {
  .footer.bg-pink .content_box {
    box-shadow: 1.3333333333vw 1.3333333333vw 0 var(--shadow-pink);
  }
}
.footer.bg-pink .footer_text span::after {
  background: var(--pink-ex-light);
}
.footer.bg-pink .content_box_bottom {
  background: var(--white-pink);
}
.footer.bg-pink .btn {
  background-color: var(--pink-vivid);
  background-image: url("/images/common/arrow-pink.svg");
  border-color: var(--pink-dark);
}
.btn {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
  border-width: 2px;
  border-style: solid;
  border-radius: 3em;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 18px 40px 18px 20px;
    width: 340px;
    font-size: 24px;
    background-size: 20px;
    background-position: right 20px center;
    background-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    padding: 4.2666666667vw;
    font-size: 4.8vw 9.6vw 4.8vw 4.8vw;
    background-position: right 5.3333333333vw center;
    background-size: 5.3333333333vw;
  }
}
.btn-primary {
  background-image: url("/images/common/arrow-vivid.svg");
  background-color: var(--primary-vivid);
  border-color: var(--primary-vivid-dark);
}
.btn-orange {
  background-image: url("/images/common/arrow-orange.svg");
  background-color: var(--orange);
  border-color: var(--orange-dark);
}
.card {
  display: flex;
  flex-direction: column;
}
.card_img {
  background: var(--primary-bg);
}
@media screen and (min-width: 768px) {
  .card_img {
    border-radius: 24px 24px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .card_img {
    border-radius: 3.2vw 3.2vw 0 0;
  }
}
.card_img img {
  width: 100%;
}
.card_info {
  display: flex;
  flex-direction: column;
  background: var(--white);
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .card_info {
    padding: 48px 24px 36px;
    border-radius: 0 0 24px 24px;
  }
}
@media screen and (max-width: 767px) {
  .card_info {
    padding: 9.6vw 5.3333333333vw;
    border-radius: 0 0 3.2vw 3.2vw;
  }
}
.card_title {
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .card_title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .card_title {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .card_text {
    margin-top: 24px;
    margin-bottom: auto;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .card_text {
    margin-top: 4.2666666667vw;
    font-size: 4vw;
  }
}
.card .btn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .card .btn {
    margin-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .card .btn {
    margin-top: 9.6vw;
  }
}
.cardWorks {
  display: flex;
  flex-direction: column;
}
.cardWorks_img {
  order: 1;
  aspect-ratio: 16/9;
  min-height: 0;
  width: 100%;
}
.cardWorks_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cardWorks_title {
  order: 2;
  font-weight: 700;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .cardWorks_title {
    margin-top: 30px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .cardWorks_title {
    margin-top: 5.3333333333vw;
    font-size: 4.8vw;
  }
}
.cardWorks_text, .cardWorks_tags {
  order: 3;
}
@media screen and (min-width: 768px) {
  .cardWorks_text, .cardWorks_tags {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .cardWorks_text, .cardWorks_tags {
    margin-top: 2.6666666667vw;
  }
}
.cardWorks_text {
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .cardWorks_text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .cardWorks_text {
    font-size: 4vw;
  }
}
.cardWorks_tags {
  display: flex;
  flex-wrap: wrap;
  line-height: 1;
  color: var(--green);
}
@media screen and (min-width: 768px) {
  .cardWorks_tags {
    gap: 6px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .cardWorks_tags {
    gap: 2.1333333333vw;
    font-size: 3.7333333333vw;
  }
}
.cardWorks_tags li {
  border: 1px solid var(--green);
  background: var(--white);
}
@media screen and (min-width: 768px) {
  .cardWorks_tags li {
    padding: 3px 8px;
    border-radius: 4px;
  }
}
@media screen and (max-width: 767px) {
  .cardWorks_tags li {
    padding: 0.8vw 2.1333333333vw;
    border-radius: 1.0666666667vw;
  }
}
.cardService_img {
  order: 1;
  width: 100%;
}
.cardService_img img {
  width: 100%;
}
.cardService_title {
  order: 2;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cardService_title {
    margin: 22px 0 14px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .cardService_title {
    margin: 1.6vw 0;
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .cardService_text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .cardService_text {
    font-size: 4vw;
  }
}
.cardRadius {
  display: flex;
  flex-direction: column;
  box-shadow: 10px 10px 0 0 rgba(246, 175, 59, 0.4);
}
@media screen and (min-width: 768px) {
  .cardRadius {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .cardRadius {
    border-radius: 3.2vw;
  }
}
.cardRadius_img {
  order: 1;
  height: 200px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .cardRadius_img {
    border-radius: 24px 24px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .cardRadius_img {
    border-radius: 3.2vw 3.2vw 0 0;
  }
}
.cardRadius_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cardRadius_inner {
  order: 2;
  flex-grow: 1;
  background: var(--white);
}
@media screen and (min-width: 768px) {
  .cardRadius_inner {
    padding: 22px 24px 32px;
    border-radius: 0 0 24px 24px;
  }
}
@media screen and (max-width: 767px) {
  .cardRadius_inner {
    padding: 3.7333333333vw 6.4vw 5.3333333333vw;
    border-radius: 0 0 3.2vw 3.2vw;
  }
}
@media screen and (min-width: 768px) {
  .cardRadius_title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .cardRadius_title {
    font-size: 5.3333333333vw;
  }
}
.cardRadius_text {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .cardRadius_text {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .cardRadius_text {
    margin-top: 2.6666666667vw;
  }
}
.list {
  line-height: 1.8;
}
.list-work li {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.list-work time {
  padding-right: 1em;
}
.list-desc {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .list-desc {
    display: flex;
    flex-wrap: wrap;
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .list-desc > dt, .list-desc > dd {
    padding: 24px 0;
    border-top: 1px solid var(--gray);
  }
}
@media screen and (min-width: 768px) {
  .list-desc > dt:last-of-type, .list-desc > dd:last-of-type {
    border-bottom: 1px solid var(--gray);
  }
}
.list-desc > dt {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .list-desc > dt {
    width: 190px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .list-desc > dt {
    padding-top: 8vw;
    font-size: 4.8vw;
    border-top: 1px solid var(--gray);
  }
}
@media screen and (min-width: 768px) {
  .list-desc > dt span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .list-desc > dt span {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .list-desc > dd {
    width: calc(100% - 190px);
    padding-left: 31px;
    padding-right: 24px;
    flex-grow: 1;
  }
}
@media screen and (max-width: 767px) {
  .list-desc > dd {
    padding: 3.2vw 0 8vw;
    font-size: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .list-desc > dd:last-child {
    border-bottom: 1px solid var(--gray);
  }
}
.list-square > li::before {
  content: "■";
}
.list-square-green > li::before {
  color: var(--green);
}
.list-square-orange > li::before {
  color: var(--orange-dark);
}
.list-square-blue > li::before {
  color: var(--blue-light);
}
.list-dot > li::before {
  content: "・";
}
.list-indent {
  text-indent: -1em;
  padding-left: 1em;
}
.list-indent li > * {
  padding-left: 1em;
}
.list-flow {
  counter-reset: num;
}
.list-flow li {
  position: relative;
  background: var(--white);
}
@media screen and (min-width: 768px) {
  .list-flow li {
    padding: 32px 5.24% 32px 13.1%;
    min-height: 134px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .list-flow li {
    padding: 6.4vw 6.4vw 6.4vw 22.4vw;
    border-radius: 3.2vw;
  }
}
.list-flow li::before {
  position: absolute;
  counter-increment: num;
  content: counter(num);
  font-weight: 600;
  line-height: 1;
  font-family: "roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .list-flow li::before {
    top: -55px;
    left: 4%;
    font-size: 120px;
  }
}
@media screen and (max-width: 767px) {
  .list-flow li::before {
    top: -9.3333333333vw;
    left: 6%;
    font-size: 19.2vw;
  }
}
.list-flow li:not(:last-child) {
  position: relative;
}
@media screen and (min-width: 768px) {
  .list-flow li:not(:last-child) {
    margin-bottom: 72px;
  }
}
@media screen and (max-width: 767px) {
  .list-flow li:not(:last-child) {
    margin-bottom: 13.3333333333vw;
  }
}
.list-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .list-flow li:not(:last-child)::after {
    height: 24px;
    width: 32px;
  }
}
@media screen and (max-width: 767px) {
  .list-flow li:not(:last-child)::after {
    height: 6.4vw;
    width: 6.4vw;
  }
}
@media screen and (min-width: 768px) {
  .list-flow li p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .list-flow li p {
    font-size: 4vw;
  }
}
.pageTop {
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  border: none;
  padding: 0;
  background: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .pageTop {
    width: 60px;
    height: 60px;
    bottom: 64px;
    right: 64px;
  }
}
@media screen and (max-width: 767px) {
  .pageTop {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    bottom: 9.3333333333vw;
    right: 4vw;
  }
}
.pageTop.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .radius {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .radius {
    border-radius: 3.2vw;
  }
}
.heading {
  z-index: 1;
  text-align: center;
  font-family: "Akshar", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}
.heading span {
  display: inline-block;
  background: var(--primary-vivid);
}
@media screen and (min-width: 768px) {
  .heading span {
    border-left: 12px solid var(--primary-vivid-dark);
  }
}
@media screen and (max-width: 767px) {
  .heading span {
    border-left: 1.6vw solid var(--primary-vivid-dark);
  }
}
.heading-pink span {
  border-color: var(--pink-vivid);
  background: var(--pink);
}
.subheading {
  padding-bottom: 0.5em;
  text-align: center;
  position: relative;
  line-height: 1.45;
}
.subheading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-ex-light);
}
@media screen and (min-width: 768px) {
  .subheading::after {
    height: 4px;
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .subheading::after {
    height: 0.5333333333vw;
    width: 16vw;
  }
}
.subheading-pink::after {
  background: var(--pink-light);
}
.tag {
  color: var(--white);
  border-radius: 2em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .tag {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .tag {
    font-size: 4.8vw;
  }
}
.tag-pink {
  background: var(--pink-dark);
}
.tag-blue {
  background: var(--blue-light2);
}
.balloon {
  position: absolute;
  color: var(--white);
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .balloon {
    padding: 10px;
    font-size: 24px;
    border-radius: 2em;
  }
}
@media screen and (max-width: 767px) {
  .balloon {
    padding: 10px;
    font-size: 4.8vw;
    border-radius: 3.2vw;
  }
}
.balloon::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .balloon::after {
    height: 24px;
    width: 32px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
@media screen and (max-width: 767px) {
  .balloon::after {
    height: 6.4vw;
    width: 6.4vw;
    clip-path: polygon(0 0, 100% 0, 50% 50%);
  }
}
.balloon-green {
  background: var(--green);
}
.balloon-green::after {
  background: var(--green);
}
.balloon-orange {
  background: var(--orange-dark);
}
.balloon-orange::after {
  background: var(--orange-dark);
}
.balloon-blue {
  background: var(--blue-light);
}
.balloon-blue::after {
  background: var(--blue-light);
}
.content {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .content {
    padding: 96px 0;
  }
}
@media screen and (max-width: 767px) {
  .content {
    padding: 12.8vw 0;
  }
}
.content_heading {
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .content_heading {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 767px) {
  .content_heading {
    margin-bottom: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .content_heading span {
    padding: 12px 48px 8px 36px;
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .content_heading span {
    padding: 2.1333333333vw 9.6vw 1.3333333333vw 8vw;
    font-size: 6.4vw;
  }
}
.content_subheading {
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .content_subheading {
    margin-bottom: 60px;
    font-size: 42px;
  }
}
@media screen and (max-width: 767px) {
  .content_subheading {
    margin-bottom: 6.4vw;
    font-size: 4.8vw;
  }
}
.content_subheading-small {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .content_subheading-small {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .content_subheading-small {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .content_minorHeading {
    margin-bottom: 15px;
    font-size: 36px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .content_minorHeading {
    margin-bottom: 10.6666666667vw;
    font-size: 5.3333333333vw;
    font-weight: 800;
  }
}
@media screen and (min-width: 768px) {
  .content_microHeading {
    margin-bottom: 10px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .content_microHeading {
    margin-bottom: 2.6666666667vw;
    font-size: 4.8vw;
  }
}
.content_desc {
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .content_desc {
    margin-bottom: 86px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .content_desc {
    margin-bottom: 17.0666666667vw;
    font-size: 4.2666666667vw;
  }
}
.content_inner, .content_box, .content_panel, .content_rowBox {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .content_inner, .content_box, .content_panel, .content_rowBox {
    max-width: 1120px;
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 767px) {
  .content_inner, .content_box, .content_panel, .content_rowBox {
    width: calc(100% - 8vw);
  }
}
@media screen and (min-width: 768px) {
  .content_inner-small {
    max-width: 736px;
  }
}
.content_box, .content_panel, .content_rowBox {
  background: var(--white);
}
@media screen and (min-width: 768px) {
  .content_box, .content_panel, .content_rowBox {
    border-radius: 24px;
    box-shadow: 10px 10px 0 rgba(246, 175, 59, 0.4);
  }
}
@media screen and (max-width: 767px) {
  .content_box, .content_panel, .content_rowBox {
    border-radius: 3.2vw;
    box-shadow: 1.3333333333vw 1.3333333333vw 0 rgba(246, 175, 59, 0.4);
  }
}
@media screen and (min-width: 768px) {
  .content_box + .content_box, .content_box + .content_panel, .content_box + .content_rowBox, .content_panel + .content_box, .content_panel + .content_panel, .content_panel + .content_rowBox, .content_rowBox + .content_box, .content_rowBox + .content_panel, .content_rowBox + .content_rowBox {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .content_box-pink, .content_panel-pink, .content_rowBox-pink {
    box-shadow: 10px 10px 0 var(--shadow-pink);
  }
}
@media screen and (max-width: 767px) {
  .content_box-pink, .content_panel-pink, .content_rowBox-pink {
    box-shadow: 1.3333333333vw 1.3333333333vw 0 var(--shadow-pink);
  }
}
@media screen and (min-width: 768px) {
  .content_box-pinkLight, .content_panel-pinkLight, .content_rowBox-pinkLight {
    box-shadow: 10px 10px 0 var(--pink-ex-light);
  }
}
@media screen and (max-width: 767px) {
  .content_box-pinkLight, .content_panel-pinkLight, .content_rowBox-pinkLight {
    box-shadow: 1.3333333333vw 1.3333333333vw 0 var(--pink-ex-light);
  }
}
.content_box_heading, .content_panel_heading, .content_rowBox_heading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .content_box_heading, .content_panel_heading, .content_rowBox_heading {
    top: -24px;
  }
}
@media screen and (max-width: 767px) {
  .content_box_heading, .content_panel_heading, .content_rowBox_heading {
    top: -4vw;
  }
}
.content_box_inner, .content_panel_inner, .content_rowBox_inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .content_box_inner, .content_panel_inner, .content_rowBox_inner {
    width: 82%;
  }
}
.content_box_subheading, .content_panel_subheading, .content_rowBox_subheading {
  position: relative;
}
@media screen and (min-width: 768px) {
  .content_box_subheading, .content_panel_subheading, .content_rowBox_subheading {
    font-size: 36px;
    margin-bottom: 25px;
    padding-bottom: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .content_box_subheading, .content_panel_subheading, .content_rowBox_subheading {
    margin-bottom: 6.4vw;
    padding-bottom: 1em;
  }
}
@media screen and (min-width: 768px) {
  .content_box_text, .content_panel_text, .content_rowBox_text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .content_box_text, .content_panel_text, .content_rowBox_text {
    font-weight: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .content_panel {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .content_panel {
    padding: 12.8vw 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .content_box_inner {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .content_box_inner {
    padding: 12.8vw 5.3333333333vw;
  }
}
.content_box_bottom {
  background: var(--primary-light);
}
@media screen and (min-width: 768px) {
  .content_box_bottom {
    padding: 46px 0;
    border-radius: 0 0 24px 24px;
  }
}
@media screen and (max-width: 767px) {
  .content_box_bottom {
    padding: 6.4vw 5.3333333333vw;
    border-radius: 0 0 3.2vw 3.2vw;
  }
}
.content_box_bottom .btn {
  margin: 0 auto;
}
.content_rowBox {
  display: flex;
}
@media screen and (max-width: 767px) {
  .content_rowBox {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .content_rowBox_balloon {
    top: -28px;
    right: 28px;
    width: 55.98%;
  }
}
@media screen and (max-width: 767px) {
  .content_rowBox_balloon {
    width: 86.4vw;
    top: -5.8666666667vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.content_rowBox_inner {
  flex-grow: 1;
  order: 2;
}
@media screen and (min-width: 768px) {
  .content_rowBox_inner {
    padding: 80px 60px 60px;
    max-width: 736px;
  }
}
@media screen and (max-width: 767px) {
  .content_rowBox_inner {
    padding: 4vw 5.3333333333vw 6.4vw;
  }
}
.content_rowBox_img {
  overflow: hidden;
  order: 1;
}
@media screen and (min-width: 768px) {
  .content_rowBox_img {
    max-width: 384px;
    width: 34.2%;
    align-items: center;
    border-radius: 24px 0 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .content_rowBox_img {
    height: 64.5333333333vw;
    border-radius: 3.2vw 3.2vw 0 0;
  }
}
.content_rowBox_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_mv {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page_mv {
    height: 70vw;
    max-height: 1000px;
  }
}
@media screen and (max-width: 767px) {
  .page_mv {
    height: 100dvh;
  }
}
.page_mv video {
  width: 100% !important;
  height: 100%;
  width: auto;
  max-width: unset;
  max-height: unset;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_fv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .page_fv {
    height: 320px;
  }
}
@media screen and (max-width: 767px) {
  .page_fv {
    padding-top: 13.3333333333vw;
    height: 61.8666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .page_heading {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 767px) {
  .page_heading {
    margin-bottom: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .page_heading span {
    padding: 12px 30px 8px 18px;
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page_heading span {
    padding: 2.1333333333vw 8.5333333333vw 1.3333333333vw 5.3333333333vw;
    font-size: 6.4vw;
  }
}
.page_subheading {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .page_subheading {
    margin-bottom: 14px;
    padding-bottom: 20px;
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .page_subheading {
    margin-bottom: 2.6666666667vw;
    padding-bottom: 2.1333333333vw;
    font-size: 4.2666666667vw;
  }
}
.page_title {
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .page_title {
    font-size: 42px;
  }
}
@media screen and (max-width: 767px) {
  .page_title {
    font-size: 5.3333333333vw;
  }
}
.top {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top + .footer {
    padding-bottom: 36.2666666667vw !important;
  }
}
@media screen and (max-width: 767px) {
  .top + .footer .pageTop {
    bottom: 45.6vw;
  }
}
.top_inner {
  position: relative;
}
.top_mv {
  position: relative;
}
.top_mv_nav {
  z-index: 10000;
  position: fixed;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .top_mv_nav {
    top: 118px;
    left: 0;
    width: 13.4%;
    max-width: 222px;
  }
}
@media screen and (max-width: 767px) {
  .top_mv_nav {
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 767px) {
  .top_mv_nav.active {
    opacity: 1;
    visibility: visible;
  }
}
.top_mv_nav ul {
  display: flex;
}
@media screen and (min-width: 768px) {
  .top_mv_nav ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .top_mv_nav ul {
    padding: 2.1333333333vw 4vw 6.4vw;
    justify-content: center;
    background: rgba(255, 255, 255, 0.4);
  }
}
@media screen and (max-width: 767px) {
  .top_mv_nav li {
    width: 30.6666666667vw;
  }
}
.top_mv_nav li img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top_mv_nav li:not(:first-child) {
    margin-top: 14%;
  }
}
.top_board {
  z-index: 1;
  position: absolute;
  left: 50%;
}
@media screen and (min-width: 768px) {
  .top_board {
    top: -10px;
    width: 464px;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .top_board {
    top: -44.2666666667vw;
    width: 81.0666666667vw;
    transform: translateX(-50%);
  }
}
.top_board img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top_board::after {
    content: "";
    position: absolute;
    top: 62px;
    left: -81.9%;
    width: 98%;
    max-width: 455px;
    height: 453px;
    background-repeat: no-repeat, no-repeat;
    background-position: left top 9px, right top;
    background-size: 66.3%, 37.3%;
    background-image: url("/images/top/cameraman.svg"), url("/images/top/spot.svg");
  }
}
@media screen and (min-width: 768px) {
  .top_about {
    padding-top: 358px;
  }
}
@media screen and (max-width: 767px) {
  .top_about {
    padding-top: 117.3333333333vw;
  }
}
.top_about_panel {
  position: relative;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top_about_panel {
    padding: 80px 0;
  }
}
.top_about_panel::after {
  content: "";
  position: absolute;
}
@media screen and (min-width: 768px) {
  .top_about_panel::after {
    top: -206px;
    right: -155px;
    width: 493px;
    height: 352px;
    background: url("/images/top/bike.svg") no-repeat top left/100%;
  }
}
@media screen and (max-width: 767px) {
  .top_about_panel::after {
    width: 100vw;
    height: 63.2vw;
    left: 50%;
    top: -55.2vw;
    transform: translateX(-50%);
    background: url("/images/top/items.svg") no-repeat top left/100%;
  }
}
.top_works {
  position: relative;
}
.top_works::before, .top_works::after {
  content: "";
  position: absolute;
}
@media screen and (min-width: 768px) {
  .top_works::before {
    top: -194px;
    left: 31px;
    width: 170px;
    height: 329px;
    background: url("/images/top/pencil.svg") no-repeat center center/100%;
  }
}
@media screen and (max-width: 767px) {
  .top_works::before {
    top: -38.9333333333vw;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 50.6666666667vw;
    background: url("/images/top/bike-pen.svg") no-repeat center center/100%;
  }
}
@media screen and (min-width: 768px) {
  .top_works::after {
    top: -212px;
    right: -102px;
    width: 375px;
    height: 424px;
    background: url("/images/top/engineer.svg") no-repeat center center/100%;
  }
}
.top_company_inner {
  display: flex;
  flex-direction: column;
}
.top_company iframe {
  order: 1;
  width: 100%;
}
.top_company h4, .top_company address {
  order: 2;
}
@media screen and (min-width: 768px) {
  .top_company h4, .top_company address {
    max-width: 475px;
    margin: 48px auto 0;
  }
}
@media screen and (min-width: 768px) {
  .top_company h5 {
    font-size: 26px;
  }
}
.top_company .btn {
  order: 3;
}
@media screen and (min-width: 768px) {
  .top_company .btn {
    margin: 48px auto 0;
  }
}
.top_recruit_box {
  position: relative;
  font-weight: 600;
}
.top_recruit_box::before {
  content: "";
  position: absolute;
}
@media screen and (min-width: 768px) {
  .top_recruit_box::before {
    top: -45px;
    left: -20px;
    width: 212px;
    height: 386px;
    background: url("/images/top/director.svg") no-repeat center center/100%;
  }
}
.top_company {
  position: relative;
  font-weight: 600;
}
.top_company::after {
  content: "";
  position: absolute;
}
@media screen and (min-width: 768px) {
  .top_company::after {
    right: calc(50% - 655px);
    bottom: 0;
    width: 278px;
    height: 160px;
    background: url("/images/top/tree.svg") no-repeat center center/100%;
  }
}
.top_company_inner {
  position: relative;
}
.top_company_inner::before {
  content: "";
  position: absolute;
}
@media screen and (min-width: 768px) {
  .top_company_inner::before {
    top: -211px;
    left: -298px;
    width: 428px;
    height: 205px;
    background: url("/images/top/rainbow.svg") no-repeat center center/100%;
  }
}
@media screen and (max-width: 767px) {
  .top_company_logo, .top_company address {
    width: 81.0666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .top_company_logo {
    margin: 7.4666666667vw auto 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .top_company iframe {
    height: 49.6vw;
  }
}
@media screen and (max-width: 767px) {
  .top_company address {
    margin: 0 auto 7.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .top_company address h5 {
    font-size: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .top_company address p {
    font-size: 4vw;
  }
}
.worksSlide {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
  background: url("/images/bg/pattern.svg") repeat-x left 100% bottom 0/58px;
}
@media screen and (min-width: 768px) {
  .worksSlide {
    margin: 234px 0 224px;
    animation: infinityScrollX 60s linear 0s both infinite;
  }
}
@media screen and (max-width: 767px) {
  .worksSlide {
    margin: 23.4666666667vw 0 53.8666666667vw;
    animation: infinityScrollX 10s linear 0s both infinite;
  }
}
.worksSlide_item {
  aspect-ratio: 16/9;
}
.worksSlide_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.worksSlide_prev, .worksSlide_next {
  top: 50% !important;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .worksSlide_prev, .worksSlide_next {
    width: 32px !important;
    height: 32px !important;
    background-color: rgba(204, 204, 204, 0.7);
  }
}
@media screen and (max-width: 767px) {
  .worksSlide_prev, .worksSlide_next {
    width: 8.5333333333vw !important;
    height: 8.5333333333vw !important;
    background-color: rgba(255, 255, 255, 0.7);
  }
}
.worksSlide_prev::after, .worksSlide_next::after {
  width: 100%;
  height: 100%;
  content: "" !important;
}
@media screen and (max-width: 767px) {
  .worksSlide_prev {
    left: 4vw !important;
  }
}
.worksSlide_prev::after {
  background: url("/images/top/slide-prev.svg") no-repeat center center/100%;
}
@media screen and (max-width: 767px) {
  .worksSlide_next {
    right: 4vw !important;
  }
}
.worksSlide_next::after {
  background: url("/images/top/slide-next.svg") no-repeat center center/100%;
}
@media screen and (min-width: 768px) {
  .info_panel_inner {
    width: 82.8%;
  }
}
@media screen and (min-width: 768px) {
  .info_list {
    margin-top: 96px;
  }
}
@media screen and (max-width: 767px) {
  .info_list {
    margin-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .info_img {
    margin-top: 96px;
  }
}
@media screen and (max-width: 767px) {
  .info_img {
    margin-top: 10.6666666667vw;
  }
}
.info_map {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .info_map {
    margin-top: 40px;
    height: 397px;
  }
}
@media screen and (max-width: 767px) {
  .info_map {
    margin-top: 6.4vw;
    height: 43.4666666667vw;
  }
}
.info_map iframe {
  width: 100%;
  height: 100%;
}
.streaming_inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .streaming_inner {
    padding-bottom: 192px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_inner {
    padding-bottom: 25.6vw;
  }
}
.streaming_inner::before {
  content: "";
  position: absolute;
  background: url("/images/bg/pattern-v.svg") repeat-y left 0 top 0/100%;
}
@media screen and (min-width: 768px) {
  .streaming_inner::before {
    top: 96px;
    left: 50%;
    transform: translateX(-489px);
    width: 92px;
    height: calc(100% + 96px);
    animation: infinityScrollY 60s linear 0s both infinite;
  }
}
@media screen and (max-width: 767px) {
  .streaming_inner::before {
    top: 12.8vw;
    left: 9.6vw;
    width: 14.1333333333vw;
    height: calc(100% + 12.8vw);
    animation: infinityScrollY 120s linear 0s both infinite;
  }
}
.streaming_panel {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .streaming_panel_inner {
    width: 82.8%;
  }
}
@media screen and (min-width: 768px) {
  .streaming_panel + .streaming_copy::before {
    content: "";
    position: absolute;
    top: -45px;
    left: calc(50% + 30px);
    transform: translateX(-50%);
    width: 1140px;
    height: 547px;
    background: url("/images/video-streaming/streaming_copy.png") no-repeat center center/100%;
  }
}
@media screen and (min-width: 768px) {
  .streaming_case {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .streaming_case li {
    display: flex;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .streaming_case li {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .streaming_case li + li {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_case li + li {
    margin-top: 6.9333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .streaming_case_img {
    width: 288px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .streaming_case_img {
    width: 100%;
  }
}
.streaming_case_img img {
  width: 100%;
  height: auto;
}
.streaming_case_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .streaming_case_inner {
    max-width: 640px;
    min-height: 216px;
    border: 16px solid var(--green-light);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .streaming_case_inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .streaming_case_inner {
    min-height: 38.1333333333vw;
    border: 2.1333333333vw solid var(--green-light);
  }
}
@media screen and (min-width: 768px) {
  .streaming_case_inner::before, .streaming_case_inner::after {
    position: absolute;
    color: var(--green-light);
    line-height: 1;
    font-size: 128px;
  }
}
@media screen and (min-width: 768px) {
  .streaming_case_inner::before {
    content: "“";
    top: 0.05em;
    left: 8%;
  }
}
@media screen and (min-width: 768px) {
  .streaming_case_inner::after {
    content: "”";
    bottom: -0.3em;
    right: 8%;
  }
}
.streaming_case_tag {
  color: var(--white);
  background: var(--brown);
}
@media screen and (min-width: 768px) {
  .streaming_case_tag {
    padding: 0 10px 0 7px;
    font-size: 18px;
    border-left: 3px solid var(--green);
  }
}
@media screen and (max-width: 767px) {
  .streaming_case_tag {
    padding: 0 2.6666666667vw 0 1.8666666667vw;
    font-size: 4.8vw;
    border-left: 0.8vw solid var(--green);
  }
}
.streaming_case_text {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .streaming_case_text {
    margin: 9px auto 0;
    font-size: 24px;
    max-width: 345px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_case_text {
    margin-top: 2.6666666667vw;
    font-size: 4.5333333333vw;
  }
}
.streaming_case li:nth-of-type(2) .streaming_case_inner {
  border-color: var(--orange-light);
}
.streaming_case li:nth-of-type(2) .streaming_case_inner::before, .streaming_case li:nth-of-type(2) .streaming_case_inner::after {
  color: var(--orange-light);
}
.streaming_case li:nth-of-type(2) .streaming_case_tag {
  border-color: var(--orange);
}
.streaming_case li:nth-of-type(3) .streaming_case_inner {
  border-color: var(--blue-ex-light);
}
.streaming_case li:nth-of-type(3) .streaming_case_inner::before, .streaming_case li:nth-of-type(3) .streaming_case_inner::after {
  color: var(--blue-ex-light);
}
.streaming_case li:nth-of-type(3) .streaming_case_tag {
  border-color: var(--blue-light);
}
.streaming_copy {
  position: relative;
}
@media screen and (min-width: 768px) {
  .streaming_copy {
    padding: 80px 0 102px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_copy {
    padding: 21.3333333333vw 2.6666666667vw 27.2vw;
  }
}
.streaming_copy_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .streaming_copy_inner {
    margin: 0 auto;
    gap: 24px;
    max-width: 500px;
    font-size: 42px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_copy_inner {
    gap: 4.2666666667vw;
    font-size: 7.4666666667vw;
  }
}
.streaming_copy_inner span {
  --slide-bg: #fff;
}
@media screen and (min-width: 768px) {
  .streaming_price + .streaming_price {
    margin-top: 93px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_price + .streaming_price {
    margin-top: 12.8vw;
  }
}
@media screen and (min-width: 768px) {
  .streaming_price_minorHeading {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_price_minorHeading {
    margin-bottom: 5.3333333333vw;
  }
}
.streaming_price_list {
  border-bottom: 1px solid var(--border);
}
@media screen and (min-width: 768px) {
  .streaming_price_list {
    padding-bottom: 40px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_price_list {
    padding-bottom: 6.6666666667vw;
    margin-bottom: 4vw;
  }
}
.streaming_price_num {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .streaming_price_num {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_price_num {
    font-size: 9.6vw;
  }
}
.streaming_price_unit {
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .streaming_price_unit {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_price_unit {
    font-size: 4vw;
  }
}
.streaming_price_tag {
  margin-right: 1em;
  border-radius: 2em;
  background: var(--yellow);
}
@media screen and (min-width: 768px) {
  .streaming_price_tag {
    padding: 8px 10px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_price_tag {
    padding: 1.3333333333vw 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .streaming_price + .streaming_copy .streaming_copy_inner {
    max-width: 630px;
  }
}
@media screen and (min-width: 768px) {
  .streaming_price + .streaming_copy::before {
    content: "";
    position: absolute;
    top: 41px;
    left: 50%;
    transform: translateX(-50%);
    width: 1120px;
    height: 622px;
    background: url("/images/video-streaming/streaming_copy2.png") no-repeat center center/100%;
  }
}
.streaming_flow {
  border: 3px solid var(--border-blue);
  background: var(--blue-ex-light2);
}
@media screen and (min-width: 768px) {
  .streaming_flow {
    margin-top: 96px;
    padding: 64px 76px 64px 52px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_flow {
    margin-top: 21.3333333333vw;
    padding: 5.3333333333vw 5.3333333333vw;
  }
}
.streaming_flow_heading {
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .streaming_flow_heading {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_flow_heading {
    margin-bottom: 5.3333333333vw;
  }
}
.streaming_flow_heading span {
  font-weight: 500;
}
.streaming_flow_step {
  counter-reset: num;
}
.streaming_flow_step li {
  position: relative;
  background: var(--white);
  border: 2px solid var(--border-blue);
}
@media screen and (min-width: 768px) {
  .streaming_flow_step li {
    padding: 30px 10px 25px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_flow_step li {
    display: flex;
    align-items: center;
    padding: 3.2vw 4.2666666667vw;
  }
}
.streaming_flow_step li::before {
  content: "";
  position: absolute;
  counter-increment: num;
  content: "0" counter(num);
  line-height: 1;
  font-family: "roboto", sans-serif;
  color: var(--blue-light);
}
@media screen and (min-width: 768px) {
  .streaming_flow_step li::before {
    top: -26px;
    left: 20px;
    font-size: 55px;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .streaming_flow_step li::before {
    top: 4vw;
    left: 25.3333333333vw;
    font-size: 6.4vw;
    font-weight: 500;
  }
}
.streaming_flow_step li:not(:last-child)::after {
  content: "";
  position: absolute;
  background: var(--blue-light);
}
@media screen and (min-width: 768px) {
  .streaming_flow_step li:not(:last-child)::after {
    height: 32px;
    width: 24px;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  }
}
@media screen and (max-width: 767px) {
  .streaming_flow_step li:not(:last-child)::after {
    height: 5.3333333333vw;
    width: 8vw;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
@media screen and (min-width: 768px) {
  .streaming_flow_icon {
    margin: 0 auto;
    padding: 15px;
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .streaming_flow_icon {
    margin-right: 5.3333333333vw;
    width: 16vw;
    flex-shrink: 0;
  }
}
.streaming_flow_icon img {
  width: 100%;
}
.streaming_flow p {
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .streaming_flow p {
    margin-top: 25px;
    font-size: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .streaming_flow p {
    padding-top: 6.6666666667vw;
    font-size: 5.3333333333vw;
  }
}
.streaming + .footer {
  padding-top: 0;
  position: relative;
}
.wedding_fv {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .wedding_plan + .wedding_plan {
    margin-top: 62px;
  }
}
@media screen and (max-width: 767px) {
  .wedding_plan {
    margin-top: 6.4vw;
  }
}
@media screen and (min-width: 768px) {
  .wedding_price {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .wedding_price {
    font-size: 9.6vw;
  }
}
@media screen and (min-width: 768px) {
  .wedding_price span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .wedding_price span {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .wedding .content_rowBox_heading {
    margin-bottom: 5px;
  }
}
.wedding .content_rowBox_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .wedding .content_rowBox_inner {
    padding: 48px 73px;
  }
}
.wedding .content_rowBox_inner .content_minorHeading {
  order: 2;
}
@media screen and (min-width: 768px) {
  .wedding .content_rowBox_inner .content_minorHeading {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .wedding .content_rowBox_inner .content_minorHeading {
    margin: 4vw auto;
  }
}
.wedding .content_rowBox p {
  order: 3;
  line-height: 1.75;
}
.wedding .content_rowBox .tag {
  order: 1;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .wedding .content_rowBox .tag {
    padding: 10px 36px;
  }
}
@media screen and (max-width: 767px) {
  .wedding .content_rowBox .tag {
    padding: 2.6666666667vw 8vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .wedding .content_panel {
    padding: 48px 0;
  }
}
@media screen and (min-width: 768px) {
  .wedding_upper {
    border-radius: 24px 24px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .wedding_upper {
    border-radius: 3.2vw 3.2vw 0 0;
  }
}
@media screen and (min-width: 768px) {
  .wedding_upper .content_rowBox_img {
    border-radius: 24px 0 0 0;
  }
}
.wedding_lower {
  display: flex;
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .wedding_lower {
    padding: 30px 46px 48px !important;
    border-radius: 0 0 24px 24px;
    gap: 18px;
  }
}
@media screen and (max-width: 767px) {
  .wedding_lower {
    flex-direction: column;
    padding-top: 0;
    border-radius: 0 0 3.2vw 3.2vw;
    gap: 4.2666666667vw;
  }
}
.wedding_lower .content_microHeading::before {
  content: "■";
}
.wedding_lower_inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .wedding_lower_inner {
    margin: 0 auto;
    padding: 24px;
    width: 91.25%;
  }
}
@media screen and (max-width: 767px) {
  .wedding_lower_inner {
    padding: 4.2666666667vw;
  }
}
.wedding_lower-pink .wedding_lower_inner {
  background: var(--pink-ex-light);
}
.wedding_lower-pink .content_microHeading::before {
  color: var(--pink-dark);
}
.wedding_lower-blue .wedding_lower_inner {
  background: var(--blue-ex-light2);
}
.wedding_lower-blue .content_microHeading::before {
  color: var(--blue-light);
}
.wedding_price {
  margin: auto 0 0 auto;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .wedding_text {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .wedding_text {
    margin-bottom: 4.2666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .works .content_inner {
    width: calc(100% - 18.4vw);
  }
}
@media screen and (min-width: 768px) {
  ._pcHide {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  ._spHide {
    display: none;
  }
}
._show {
  display: block;
}
._hide {
  display: none;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .row {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .row-2 {
    gap: 96px 8.57%;
  }
}
@media screen and (max-width: 767px) {
  .row-2 {
    gap: 6.4vw;
  }
}
@media screen and (min-width: 768px) {
  .row-2 > * {
    width: 45.7%;
  }
}
@media screen and (min-width: 768px) {
  .row-3 {
    gap: 2.75%;
  }
}
@media screen and (max-width: 767px) {
  .row-3 {
    gap: 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .row-3 > * {
    width: 31.5%;
  }
}
@media screen and (min-width: 768px) {
  .row-4 {
    gap: 40px 3%;
  }
}
@media screen and (max-width: 767px) {
  .row-4 {
    gap: 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .row-4 > * {
    width: 22.75%;
  }
}
@media screen and (max-width: 767px) {
  .rowSp {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .rowSp-2 {
    gap: 6.4vw 3%;
  }
}
@media screen and (max-width: 767px) {
  .rowSp-2 > * {
    width: 47%;
  }
}
._ta {
  text-align: left;
}
._tac {
  text-align: center;
}
@media screen and (min-width: 768px) {
  ._pcTac {
    text-align: center;
  }
}
._tar {
  text-align: right;
}
.akshar {
  font-family: "Akshar", sans-serif;
  font-weight: 500;
}
.roboto {
  font-family: "Roboto", sans-serif;
}
.medium {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.c-primary {
  color: var(--primary);
}
.c-red {
  color: var(--red);
}
.indent {
  text-indent: -1em;
  padding-left: 1em;
}
.bg {
  background-position: center top;
  background-repeat: repeat;
}
@media screen and (min-width: 768px) {
  .bg {
    background-size: 800px;
  }
}
@media screen and (max-width: 767px) {
  .bg {
    background-size: 100%;
  }
}
.bg-primary {
  background-image: url("/images/bg/bg.png");
}
.bg-light {
  background-image: url("/images/bg/bg-light.png");
}
.bg-pink {
  background-image: url("/images/bg/bg-pi.png");
}
.bg-pinkLight {
  background-image: url("/images/bg/bg-pi-light.png");
}/**
 * Swiper 11.2.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 23, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
