﻿html {
  font-size: 62.5%;
}

body {
  margin: 0px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: rgb(35, 24, 21);
  line-height: 1.6;
  text-size-adjust: 100%;
  /* padding: 0px !important; */
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

p, h1, h2, h3, h4, dl, dd, dt {
  margin: 0px;
}

button {
  margin: 0px;
  padding: 0px;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

div#wrapMainContent {
  width: 100%;
  margin: 0px auto;
}

#campaign {
  width: 100%;
  overflow: hidden;
}

#wrapMainContent>div.topicPath:first-child {
  display: none;
}

p#fPT {
  z-index:2;
}


:root {
  --color-bg: #8fcce2;
  --color-sub-bg: #def1f7;
  --color-black: #231815;
  --color-text: #231815;
  --color-accent: #d9e475;
  --color-badge: #7ed0e8;
  --color-white: #fff;
  --color-gray: #666;
  --color-line: #6AADC5;
  --content-max: 960px;
  --radius-pill: 9999px;
  --radius-card: 8px;
  --shadow-card: 0 4px 16px rgba(35, 24, 21, 0.08);
  --faq-duration: 350ms;
}

.sp {
  display: none;
}

.pc {
  display: inline;
}

@media screen and (max-width: 780px) {
  .sp {
    display: inline;
  }

  .pc {
    display: none;
  }

  br.sp {
    display: block;
  }

  br.pc {
    display: none;
  }
}

@media screen and (min-width: 781px) {
  .sp {
    display: none;
  }

  .pc {
    display: inline;
  }

  br.sp {
    display: none;
  }

  br.pc {
    display: block;
  }
}

.container {
  width: 100%;
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
  padding-right: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}

.page-section {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  box-sizing: border-box;
}

@media screen and (min-width: 781px) {
  .page-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.heading__title {
  margin: 0px auto;
  padding: 0px;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  letter-spacing: 0px;
}

.heading__lead {
  margin-top: 12px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
}

@media screen and (min-width: 781px) {
  .heading {
    margin-bottom: 32px;
  }

  .heading__title {
    margin-bottom: 32px;
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 780px) {
  .heading {
    margin-bottom: 32px;
  }

  .heading__title {
    font-size: 3rem;
    letter-spacing: 0.01em;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 320px;
  min-height: 40px;
  padding: 10px 40px 10px 24px;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.7;
}

.btn_theme_black {
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.btn_theme_outline {
  background-color: transparent;
  border-color: var(--color-black);
  color: var(--color-black);
}

.btn_theme_outline:hover {
  opacity:1;
  background-color:var(--color-black);
  color: var(--color-white);
}

.btn_theme_outline:hover .btn__icon_arrow {
   filter: brightness(0) invert(1);
}

.btn__icon {
  position: absolute;
  right: 10px;
  top: 0px;
  bottom: 0px;
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.btn__icon_arrow {
  background-image: url("/photogoods/acrylic/images/icon-arrow.svg");
}

.btn__icon_external {
  background-image: url("/photogoods/acrylic/images/icon-external.svg");
}

.btn__icon_open-new {
  background-image: url("/photogoods/acrylic/images/icon-open-new.svg");
}

.btn_theme_black .btn__icon_arrow, .btn_theme_black .btn__icon_external, .btn_theme_black .btn__icon_open-new {
  filter: brightness(0) invert(1);
}

.btn_theme_outline .btn__icon_arrow, .btn_theme_outline .btn__icon_external {
  filter: none;
}

.btn__icon_direction_down {
  transform: translateY(-50%) rotate(90deg);
  margin-top: 0px;
  top: 50%;
}

.btn__icon_direction_right {
  transform: translateY(-50%);
  margin-top: 0px;
  top: 50%;
}

.btn_size_s {
  max-width: 180px;
  min-height: 40px;
  font-size: 1.3rem;
  padding: 8px 36px 8px 20px;
}

.btn_size_m {
  max-width: 240px;
}

.btn_size_l {
  max-width: 400px;
  min-height: 52px;
  font-size: 1.5rem;
  padding: 12px 48px 12px 28px;
}

.stand {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}

.stand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(rgba(35, 24, 21, 0.18) 4px 8px 10px);
}

.stand_pos_1 {
  top: 8%;
  left: 2%;
  width: 18%;
  max-width: 120px;
}

.stand_pos_2 {
  top: 28%;
  left: 6%;
  width: 14%;
  max-width: 96px;
}

.stand_pos_3 {
  bottom: 8%;
  left: 4%;
  width: 16%;
  max-width: 110px;
}

.stand_pos_4 {
  top: 10%;
  right: 4%;
  width: 16%;
  max-width: 110px;
}

.stand_pos_5 {
  top: 36%;
  right: 2%;
  width: 18%;
  max-width: 120px;
}

.stand_pos_6 {
  bottom: 12%;
  right: 6%;
  width: 14%;
  max-width: 96px;
}

.stand_pos_7 {
  bottom: 4%;
  left: 42%;
  width: 12%;
  max-width: 88px;
}

@media screen and (max-width: 780px) {
  .stand_pos_1 {
    top: auto;
    bottom: 4%;
    left: 2%;
    width: 22%;
    max-width: 88px;
  }

  .stand_pos_2 {
    top: auto;
    bottom: 2%;
    left: 24%;
    width: 20%;
    max-width: 80px;
  }

  .stand_pos_3 {
    bottom: 0px;
    left: 48%;
    width: 22%;
    max-width: 88px;
  }

  .stand_pos_4 {
    inset: auto 2% 4% auto;
    width: 22%;
    max-width: 88px;
  }

  .stand_pos_5, .stand_pos_6, .stand_pos_7 {
    display: none;
  }
}

.sticky-nav {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  box-sizing: border-box;
  background-color: var(--color-accent);
  /* transform: translateY(100%); */
  transition: transform 0.3s;
  transform: translateY(0px);
  pointer-events: auto;
  /* pointer-events: none; */
}

.sticky-nav_visible {
  transform: translateY(0px);
  pointer-events: auto;
}

.sticky-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: var(--content-max);
}

.sticky-nav__btn {
  flex: 1 1 auto;
  max-width: 280px;
}

.sticky-nav__btn .btn__icon_direction_down {
  right: 14px;
}

.sticky-nav__btn:first-child:hover {
  opacity:1;
  background:var(--color-white);
  color:var(--color-black);
}

.sticky-nav__btn:first-child:hover .btn__icon_arrow{
  filter: invert(0);
}

@media screen and (max-width: 780px) {
  .sticky-nav {
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-nav__inner {
    gap: 8px;
  }

  .sticky-nav__btn {
    max-width: none;
    min-height: 52px;
    padding: 8px 32px 8px 12px;
    font-size: 1.2rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 781px) {
  .sticky-nav {
    padding: 16px 20px;
  }

  .sticky-nav__btn {
    flex: 0 0 auto;
  }

  .sticky-nav__btn:first-child {
    max-width: 324px;
  }

  .sticky-nav__btn:last-child {
    max-width: 220px;
  }
}

.mv {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: var(--color-bg);
  overflow: hidden;
  box-sizing: border-box;
}

.mv__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: center;
  width: 100%;
  max-width: var(--content-max);
  margin: 0px auto;
  padding: 0px;
  box-sizing: border-box;
  text-align: center;
}

.logo-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin-bottom: 29px;
}

.logo-group__logo {
  display: block;
  width: auto;
  max-width: 136px;
  height: auto;
  line-height: 0;
}

.logo-group__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.logo-group__catch {
  flex: none;
  margin: 0;
  overflow: hidden;
  text-indent: -9999px;
  font-size: 0;
}

.mv__title {
  margin: 0px;
  width: 100%;
  flex-basis: auto;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  font-size: 0;
}

.mv__title picture {
  display: block;
  width: 100%;
}

.mv__title img {
  display: block;
  width: 100%;
  height: auto;
}

.mv__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.mv__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgb(0, 0, 0);
  background: transparent;
  overflow: hidden;
  text-indent: -9999px;
  font-size: 0;
  box-sizing: border-box;
}

.mv__badge {
  background: url("/photogoods/acrylic/images/mv-badge-01.svg") 0 0 no-repeat;
  background-size: 100%;
}

.mv__badge:nth-of-type(2) {
  background: url("/photogoods/acrylic/images/mv-badge-02.svg") 0 0 no-repeat;
  background-size: 100%;
}

.mv__badge_accent {
  background: url("/photogoods/acrylic/images/mv-badge-03.svg") 0 0 no-repeat;
  background-size: 100%;
  border: none;
}

.mv__visual {
  position: absolute;
  inset: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  line-height: 0;
  pointer-events: none;
}

.mv__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.mv__visual-img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 780px) {
  .mv {
    height: 170vw;
    display: flex;
    align-items: stretch;
  }

  .mv__inner {
    align-items: center;
    justify-content: flex-start;
    padding-top: 7.6923076923076925vw;
  }

  .logo-group {
    flex-direction: column;
    gap: 4.102564102564102vw;
    margin-bottom:6.41025641025641vw;
  }

  p.logo-group__logo {
    width: 34.87179487179487vw;
  }

  p.logo-group__catch {
    width: 47.69230769230769vw;
    height: 8.717948717948717vw;
    background: url("/photogoods/acrylic/images/catch-sp.svg") 0 0 no-repeat;
    background-size: 100%;
    display: block;
  }

  .mv__badges {
    gap: 3.5897435897435894vw;
  }

  .mv__badge {
    /* width: 91px; */
    width: 23.333333333333332vw;
    /* height: 91px; */
    height: 23.333333333333332vw;
    border-width: .75px;
  }

  .mv__badge_accent{
    /* width: 91px; */
    width: 23.333333333333332vw;
    /* height: 91px; */
    height: 23.333333333333332vw;
  }

  .mv__title {
    width: 71.53846153846153vw;
    height: 17.94871794871795vw;
    /* max-width: 279px; */
    margin: 0 auto 3.076923076923077vw;
    padding: 0;
    background: url("/photogoods/acrylic/images/h1-sp.png") 0 0 no-repeat;
    background-size: 100%;
  }

  .mv__visual {
    max-width: unset;
  }
}

@media screen and (min-width: 781px) {
  .mv {
    min-height: 573px;
    display: flex;
    align-items: stretch;
  }

  .mv__visual {
    max-width: none;
  }

  #campaign .mv__visual-img {
    max-width: unset;
    width: 1440px;
    margin: 0px auto;
    object-fit: cover;
    object-position: center top;
  }

  .mv__inner {
    padding: 57px 6px 0;
  }

  .mv__badges {
    gap: 30px;
  }

  .mv__badge {
    width: 120px;
    height: 120px;
    box-sizing: border-box;
  }

  .mv__badge_accent{
    width: 120px;
    height: 120px;
  }
  
  .logo-group__catch {
    width: 250px;
    height: 46px;
    background: url("/photogoods/acrylic/images/catch.svg") 0 0 no-repeat;
    background-size: 100%;
  }
  
  .mv__title {
    margin: 0px 0px 39px;
    padding: 0px;
    width: 489.68px;
    height: 124.583px;
    background: url("/photogoods/acrylic/images/h1.png") 0 0 no-repeat;
    background-size: 100%;
  }
}

@media screen and (min-width: 781px) and (max-width: 1440px) {
  .mv__visual {
    /* left: calc(-720px + 50vw); */
    left: calc(-720px + 50%);
  }
}

.intro {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0px 80px;
  background-color: var(--color-bg);
  overflow: hidden;
  box-sizing: border-box;
}

.intro__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin: 0px auto;
  padding: 0px;
  box-sizing: border-box;
  text-align: center;
}

.intro__title {
  margin: 0px auto;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  display: inline;
  background-image: linear-gradient(transparent 94%, var(--color-accent) 50%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-bottom: 4px;
}

.intro__lead {
  max-width: 640px;
  margin: 0px auto;
  font-size: 1.4rem;
  font-size: 3.5897435897435894vw;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
}

.intro__card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 582px;
  margin: 0px auto;
  padding: 20px 24px;
  box-sizing: border-box;
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-align: left;
}

.intro__logo {
  flex: 0 0 auto;
  width: 64px;
  height: auto;
  line-height: 0;
}

.intro__logo img {
  margin: auto;
  width: 29.33px;
  display: block;
}

.intro__card-body {
  flex: 1 1 auto;
  min-width: 0px;
}

.intro__card-title {
  padding: 0px;
  margin: 0px 0px 8px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}

.intro__card-text {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
}

.intro__visual {
  position: absolute;
  inset: 0px;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}

.intro__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

#campaign .intro__visual-img {
  display: block;
  max-width: unset;
  width: 1440px;
  margin: 0px auto;
  object-fit: cover;
  object-position: center top;
}

@media screen and (max-width: 780px) {
  .intro {
    height: 170vw;
    /* max-height: 663px; */
    /* padding: 40px 18px 0; */
    padding: 10.256410256410255vw 4.615384615384616vw 0;
  }

  .intro__visual {
    width: 100%;
    max-width: unset;
    bottom: 0;
    top:unset;
  }

  #campaign .intro__visual-img {
    width: 100%;
    height: auto;
  }

  .intro__title {
    /* padding: 0 0 4px; */
    padding: 0 0 1.0256410256410255vw;
    /* font-size: 1.8rem; */
    font-size: 4.615384615384616vw;
    line-height: 1.83;
    background-image: linear-gradient(transparent 90%, var(--color-accent) 50%);
  }

  .intro__card {
    max-width: unset;
    align-items: flex-start;
    /* padding: 16px; */
    padding: 4.102564102564102vw;
    /* gap: 8px; */
    gap: 2.051282051282051vw;
  }

  .intro__inner {
    justify-content: center;
  }

  .intro__lead {
    text-align: left;
    /* margin: 24px auto; */
    margin: 6.153846153846154vw auto 5.128205128205128vw;
  }

  .intro__card-title {
    /* font-size: 1.5rem; */
    font-size: 3.8461538461538463vw;
    line-height: 1.5;
  }

  p.intro__card-text {
    /* font-size: 1.1rem; */
    font-size: 2.8205128205128207vw;
    line-height: 1.5;
  }

  .intro__logo {
    /* width: 66px; */
    width: 16.923076923076923vw;
    margin-top: 4.615384615384616vw;
  }

  .intro__logo img {
    width: 7.52051282051282vw;
  }
}

@media screen and (min-width: 781px) {
  .intro {
    padding: 40px 0px 0px;
    min-height: 549px;
  }

  .intro__title {
    font-size: 3rem;
    line-height: 1.6;
  }

  .intro__lead {
    margin: 40px auto;
    font-size: 1.6rem;
  }

  .intro__card {
    padding: 24px;
    gap: 8px;
  }

  .intro__card-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.075rem;
  }

  .intro__card-text {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.07rem;
  }
}

@media screen and (min-width: 781px) and (max-width: 1440px) {
  .intro__visual {
    left: calc(-720px + 50vw);
  }
}

.goods {
  width: 100%;
  background-color: var(--color-sub-bg);
  box-sizing: border-box;
}

.goods__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-bottom: 24px;
}

.goods__note {
  margin: 0px 0px 48px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-gray);
  text-align: center;
}

.goods__categories {
  width: 100%;
}

.goods__category-title {
  margin: 0px 0px 24px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
}

.goods__category-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

@media screen and (min-width: 781px) {
  .goods {
    padding: 128px 0px 118px 0px;
  }

  .goods .heading {
      margin-bottom: 40px;
  }

  .goods .heading__title {
      margin-bottom: 0;
  }

  .goods__list {
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 24px;
  }

  .goods__list .product-card {
    flex: 1 1 0px;
    width: 33.333%;
    max-width: 300px;
  }

  .goods__note {
    margin-bottom: 64px;
  }

  .goods__category-title {
    padding: 0px;
    margin-bottom: 40px;
    font-size: 2rem;
    line-height: 1.5;
  }

  .goods__category-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}

@media screen and (max-width: 780px) {
  .goods {
    margin: 0 auto;
    padding: 40px 24px;
  }

  .goods__list {
    width: 76.66666666666667vw;
    margin: 0 auto 32px;
    gap: 32px;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: transparent;
  box-sizing: border-box;
}

.product-card__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  line-height: 0;
  background-color: var(--color-white);
}

.product-card__image img, .product-card__img {
  display: block;
  width: 100%;
  height: auto;
}

.product-card__badge {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 6px 28px 8px 26px;
  box-sizing: border-box;
  background-color: var(--color-accent);
  border-radius: 0px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
  gap: 10px;
  padding: 20px 12px 0px;
  text-align: center;
  box-sizing: border-box;
}

.product-card__title {
  padding: 0px;
  margin: 0px auto;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}

.product-card__lead {
  margin: 0px auto;
  font-size: 1.4rem;
  color: var(--color-text);
  line-height: 1.6;
}

.product-card__size {
  margin: 0px auto;
  font-size: 1.4rem;
  display: inline-block;
  color: var(--color-text);
}

.product-card__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0px 0px 14px;
}

.product-card__price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 24px;
  padding: 0px 10px 1px;
  box-sizing: border-box;
  background-color: var(--color-badge);
  border-radius: var(--radius-pill);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
}

.product-card__price-value {
  width: fit-content;
  font-size: 2rem;
  font-weight: 700!important;
  line-height: 1.2;
  color: var(--color-text);
  display: inline-flex;
  align-items: baseline;
}

.product-card__price-note {
  font-size: 1.2rem;
  font-weight: 400;
}

.product-card__btn {
  width: 100%;
  max-width: 220px;
  margin-top: auto;
}

@media screen and (min-width: 781px) {
  .product-card {
    flex: 1 1 0px;
    max-width: 33.333%;
  }

  .product-card__body {
    padding: 24px 8px 0px;
  }

  .product-card__title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 780px) {
  .product-card__image {
    max-width: 299px;
    margin: 0 auto;
  }

  .product-card__badge {
    min-height: 32px;
    font-size: 1.4rem;
  }

  h3.product-card__title {
    font-size: 2rem;
  }
  
  .product-card__price {
    margin-bottom: 14px;
  }

  .product-card__price-value{
    line-height:1.6;
  }

  .product-card__body {
    padding-top: 27px;
  }

  .product-card__btn {
    max-width: 220px;
  }

  .goods__note {
    display: none;
  }
}

.category-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 104px;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 8px;
  border: 1px solid #EEE;
  box-sizing: border-box;
  transition: all 0.2s;
}

.category-card:hover {
  opacity: 1;
  background: #f2f2f2;
}

.category-card__image {
  flex: 0 0 42%;
  max-width: 120px;
  line-height: 0;
  overflow: hidden;
}

#campaign .category-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0px;
  padding: 12px 14px;
  box-sizing: border-box;
}

.category-card__title {
  margin: 0px 0px 6px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}

.category-card__icon {
  margin: 0px auto;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/photogoods/acrylic/images/icon-external.svg") center center / contain no-repeat;
  filter: invert(1);
}

@media screen and (min-width: 781px) {
  .category-card__image {
    max-width: 140px;
  }

  .category-card__body {
    padding: 20px 11px;
  }

  .category-card__title {
    margin: 0px auto;
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.5;
  }
}

@media screen and (max-width: 780px) {
  .goods__category-title {
    padding: 0;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  ul.goods__category-list {
    max-width: 349px;
    margin: 0 auto;
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }

  a.category-card {
    height: 26.666666666666668vw;
    max-height: 104px;
  }

  .category-card__image {
    flex: 0 0 29.7994269340974%;
    max-width: 104px;
  }

  .category-card__body {
    align-items: center;
    flex-direction: row;
    position: relative;
  }

  .category-card__title {
    margin: 0 0 0 -2em;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .category-card__icon {
    right: 16px;
    margin: 0;
    position: absolute;
  }
}

.cta-banner {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: rgb(127, 192, 217);
  overflow: hidden;
  box-sizing: border-box;
}

.cta-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--content-max);
  margin: 0px auto;
  padding: 0px 20px;
  box-sizing: border-box;
}

.cta-banner__badge {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 239px;
  min-height: 32px;
  margin: 0px auto 24px;
  padding: 5px 28px 5px 24px;
  box-sizing: border-box;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  text-align: center;
}

.cta-banner__badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0px;
  height: 0px;
  margin-left: -8px;
  border-style: solid;
  border-width: 8px 6px 0px;
  border-color: var(--color-accent) transparent transparent transparent;
}

.cta-banner__btn {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  min-height: 52px;
  font-size: 1.5rem;
}

.cta-banner__visual {
  position: absolute;
  inset: 0px;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}

.cta-banner__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

#campaign .cta-banner__visual-img {
  display: block;
  width: 1440px;
  height: 100%;
  margin: auto;
  max-width: unset;
  object-position: center center;
}

@media screen and (max-width: 780px) {
  .cta-banner {
    margin: 0 auto;
    padding: 40px 0;
    height: 83.07692307692308vw;
    max-height: 324px;
    background-color: #8fcce2;
  }

  .cta-banner__inner {
    padding: 0px 24px;
  }

  #campaign .cta-banner__visual-img {
    width: 100%;
    height: auto;
  }

  .cta-banner__visual {
    max-width: 390px;
    margin: auto;
    top: unset;
    bottom: 0;
  }

  .cta-banner__badge {
    font-size: 1.4rem;
    font-weight: 700!important;
    padding: 6px 14px;
  }

  .cta-banner__btn {
    max-width: 342px;
    font-size: 1.6rem;
    padding: 9px 24px 9px 16px;
    letter-spacing: 0.02rem;
  }
}

@media screen and (min-width: 781px) {
  .cta-banner {
    padding: 52px 0px 69px;
  }

  .cta-banner__btn {
    max-width: 477px;
    min-height: 65px;
    font-size: 1.6rem;
    padding: 12px 28px 12px 28px;
  }
  
  .btn__icon_external{
    right: 20px;
  }
}


@media screen and (min-width: 781px) and (max-width: 1440px) {
  .cta-banner__visual {
    left: calc(-720px + 50vw);
  }
}

.order-guide {
  width: 100%;
  padding: 40px 0px 60px;
  background-color: var(--color-sub-bg);
  box-sizing: border-box;
}

.order-guide__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
}

.order-guide__item {
  margin: 0px auto;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px 20px;
  align-items: stretch;
  width: 100%;
}

.order-guide__num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 48px;
  height: 100%;
}

.order-guide__num-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-badge);
}

.order-guide__item:not(:last-child) .order-guide__num::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 50%;
  width: 0px;
  height: 100%;
  margin-left: -1px;
  border-left: 2px dashed rgb(143, 202, 225);
}

.order-guide__title {
  padding: 0px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
}

.order-guide__title_em {
  background-color: var(--color-accent);
  padding: 4px 2px;
}

.order-guide__text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-text);
}

.order-guide__em {
  display: inline;
  background-color: var(--color-accent);
  padding: 0px 4px;
}

.order-guide__image {
  grid-column: 2 / 3;
  width: 100%;
  max-width: 280px;
  margin-top: 4px;
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
}

.order-guide__image img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 781px) {
  .order-guide {
    padding: 128px 0px;
  }

  .order-guide__list {
    max-width: 960px;
    margin-bottom: 40px;
    gap: 0px;
  }

  .order-guide__item {
    padding: 0px 0px 15px;
    grid-template-columns: 64px 1fr 296px;
    gap: 0px 24px;
    align-items: flex-start;
    overflow:hidden;
  }

  .order-guide__num {
  width: 64px;
  height: calc(100% + 16px);
  }

  .order-guide__num-text {
    width: 64px;
    height: 64px;
    font-size: 3rem;
  }

  .order-guide__item:not(:last-child) .order-guide__num::after {
    top: 64px;
  }

  .order-guide__content {
    padding-top: 17px;
  }

  .order-guide__title {
    margin-bottom: 16px;
    font-size: 2rem;
    line-height: 1.6;
  }

  .order-guide__text{
    width: 450px;
  }

  .order-guide__image {
    grid-column: auto;
    max-width: 296px;
    margin-top: 0px;
  }
}

@media screen and (max-width: 780px) {
  .order-guide {
    margin: 0 auto;
    padding: 40px 24px;
  }

  .order-guide .heading {
    margin-bottom: 20px;
  }

  .order-guide .heading__title {
    margin-bottom: 32px;
  }

  .order-guide__list {
    gap: 22px;
    margin-bottom: 58px;
  }

  .order-guide__num {
    width: 51px;
    height:unset;
    grid-row: span 2 / span 2;
  }

  .order-guide__num-text {
    font-size: 2.4rem;
    width: 51px;
    height: 51px;
  }

  .order-guide__item {
    gap: 16px 24px;
    padding: 0;
  }

  .order-guide__content {
    margin-top: 10px;
  }

  .order-guide__title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .order-guide__image {
    max-width: 271px;
    margin: 0;
  }

  .order-guide__item:not(:last-child) .order-guide__num::after {
    top: 51px;
  }

  .order-guide__item:nth-of-type(4) h3.order-guide__title {
    line-height: 1.6;
  }

  .order-guide__item:nth-of-type(4) h3.order-guide__title+p {margin-top: 8px;}

  .order-guide__title_em {padding: 0 2px 1px;}
}

.store-support {
  width: 100%;
  padding: 64px 0px 40px;
  background-color: transparent;
  box-sizing: border-box;
}

.store-support__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  box-sizing: border-box;
}

.store-support__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  box-sizing: border-box;
}

.store-support__title {
  margin: 0px auto;
  padding: 0px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
  flex-basis: auto;
}

.store-support__btn {
  max-width: 276px;
  padding: 12px 40px 13px 24px;
}

.store-support__image {
  width: 100%;
  line-height: 0;
}

.store-support__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (min-width: 781px) {
  .store-support {
    padding: 0px 0px 128px;
  }

  .store-support__card {
    flex-direction: row;
    align-items: stretch;
  }

  .store-support__body {
    flex: 1 1 48%;
    padding: 40px 48px;
    gap: 32px;
  }

  .store-support__title {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
  }

  .store-support__image {
    flex: 1 1 45%;
    max-width: 432px;
  }

  .store-support__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
  }
}

@media screen and (max-width: 780px) {
  .store-support__card {
    padding: 24px;
    flex-direction: column-reverse;
  }

  .store-support {
    margin: 0 auto 32px;
    padding: 0;
  }

  .store-support__image {
    width: 98.98989898989899%;
    max-width: 294px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
  }

  .store-support__body {
    padding: 24px 0 0;
    gap: 16px;
  }

  .store-support__title {
    font-size: 1.8rem;
    text-align: center;
  }
}

.speed-finish {
  width: 100%;
  padding: 40px 0px 0px;
  background-color: transparent;
  box-sizing: border-box;
}

.speed-finish__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  padding: 32px 24px;
  box-sizing: border-box;
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  position: relative;
}

.speed-finish__body {
  position: relative;
  z-index: 2;
  width: 100%;
}

.speed-finish__lead {
  margin: 0px 0px 15px;
  font-size: 2rem;
  font-weight: 700!important;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.15rem;
}

.speed-finish__title {
  margin: 0px 0px 24px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
}

.speed-finish__em {
  display: inline;
  background-color: var(--color-accent);
  padding: 0px 4px;
}

.speed-finish__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.speed-finish__btn {
  max-width: 280px;
}

.speed-finish__collage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  margin: 28px auto 0px;
  line-height: 0;
}

.speed-finish__collage img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 781px) {
  .speed-finish {
    padding: 0px;
  }

  .speed-finish__card {
    justify-content: center;
    padding: 65px 65px 48px 65px;
    min-height: 409px;
  }

  .speed-finish__body {
    margin-top: -8px;
  }

  .speed-finish__title {
    font-size: 2.8rem;
    padding: 0px;
    margin-bottom: 10px;
    letter-spacing: .2rem;
  }

  .speed-finish__btns {
    flex-direction: unset;
    gap: 19px;
  }
  
  .speed-finish__notes {
    width: 600px;
  }
  
  .speed-finish__collage {
    flex: 0 1 44%;
    max-width: 420px;
    margin: 0px;
  }
}

.faq {
  width: 100%;
  padding: 40px 0px 80px;
  background-color: var(--color-bg);
  box-sizing: border-box;
}

.faq__list {
  width: 100%;
  max-width: 960px;
  margin: 0px auto;
  border-top: 1px solid var(--color-line);
}

.faq-item {
  width: 100%;
  border-bottom: 1px solid var(--color-line);
  box-sizing: border-box;
}

.faq-item__question {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 18px 40px 18px 0px;
  box-sizing: border-box;
  text-align: left;
  cursor: pointer;
}

.faq-item__mark {
  flex: 0 0 auto;
  margin-right: 14px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
}

.faq-item__text {
  flex: 1 1 auto;
  min-width: 0px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
}

.faq-item__text ul,
.faq-item__text ol {
  margin: 8px 0 16px;
}

.faq-item__text ul,
.faq-item__text ol {
  list-style: disc;
}

.faq-item__text li {
  margin: 0.25em 0;
  font-weight: 400;
  list-style-type: none;
  padding-left: 1em;
  text-indent: -1em;
}

.faq-item__text li:before {
  content: "・";
}

.faq-item__text p {
  margin: 0 0 8px;
  font-weight: 400;
}

.faq-item__text p b {
  font-weight: 700;
}

.faq-item__icon {
  position: absolute;
  right: 0px;
  top: 18px;
  display: block;
  width: 22px;
  height: 22px;
}

.faq-item__question {
  position: relative;
}

.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-text);
  border-radius: 1px;
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
  margin-top: -1px;
  margin-left: -7px;
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  margin-top: -7px;
  margin-left: -1px;
  transition: transform var(--faq-duration) ease, opacity var(--faq-duration) ease;
}

.faq-item_open .faq-item__icon::after {
  transform: scaleY(0);
  opacity: 0;
}

.faq-item__answer {
  overflow: hidden;
  height: 0px;
  transition: height var(--faq-duration) ease;
}

.faq-item__answer[hidden] {
  display: block;
  height: 0px;
}

.faq-item__answer-inner {
  display: flex;
  align-items: flex-start;
  padding: 0px 40px 20px 0px;
  box-sizing: border-box;
}

.faq-item__answer-body {
  flex: 1 1 auto;
  min-width: 0px;
}

.faq-item__text_answer {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7;
}

.faq-item__link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: underline;
}

@media screen and (max-width: 780px) {
  .faq {
    margin: 0 auto;
    padding: 40px 24px 40px;
  }

  .faq-item__question {
    padding: 23px 50px 23px 16px;
  }

  .faq-item__mark {
    display: none;
  }

  .faq-item__answer-inner {
    /* margin-top: -10px; */
    padding: 0 0 24px 39px;
  }

  .faq-item__text {
    font-size: 1.8rem;
  }

  .faq-item__icon {
    right: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
}

  .faq-item__answer .faq-item__text,
  .faq-item__answer .faq-item__text *{
    font-size:  1.4rem;
    font-weight: 600!important;
  }
}

@media screen and (min-width: 781px) {
  .faq {
    padding: 80px 0px;
  }

  .faq .heading {
    margin-bottom: 40px;
  }

  .faq .heading__title {
    margin-bottom: 0px;
  }

  .faq-item {
    padding: 8px 0 8px;
  }

  .faq-item__question {
    padding: 20px 48px 20px 20px;
  }

  .faq-item__icon {
    top: 20px;
    right: 16px;
  }

  .faq-item__answer-inner {
    padding: 0px 48px 20px 20px;
  }

  .faq-item__text, .faq-item__text * {
    font-size: 1.5rem;
    font-weight: 600!important;
  }
}

#campaign {
  padding-bottom: 80px;
}

#campaign .btn {
  box-sizing: border-box;
}

#campaign img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 781px) {
  #campaign {
    min-width: 950px;
  }
}

@media screen and (max-width: 780px) {
  #campaign {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
    padding-bottom: 30px;
  }
}

.order-guide__note {
  margin: 0px auto;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: rgb(85, 85, 85);
  text-align: center;
}

.goods__note {
  margin: 0px auto 48px;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: rgb(85, 85, 85);
  text-align: center;
}

.order-guide__note_item {
  margin: 6px 0px 0px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: rgb(85, 85, 85);
  text-align: left;
}

.speed-finish__sub {
  margin: 0 0 32px;
  font-size: 1.5rem;
  font-weight: 700!important;
  line-height: 1.5;
  color: rgb(51, 51, 51);
  letter-spacing: 0.1rem;
}

.speed-finish__notes {
  margin: 16px 0px 0px;
}

.speed-finish__notes p{
  margin:0;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgb(51, 51, 51);
}

.speed-finish__visual {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 28px auto 0px;
  min-height: 280px;
}

.speed-finish__circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
}

.speed-finish__circle img {
  display: block;
  width: 100%;
  height: auto;
}

.speed-finish__circle_main {
  top: 45px;
  right: -20px;
  width: 72%;
  max-width: 276px;
  height: 276px;
}

.speed-finish__circle_sub {
  top: 242px;
  left: 43.51297405189621%;
  width: 27.744510978043913%;
  max-width: 139px;
}

.speed-finish__badge {
  position: absolute;
  left: 71.654691%;
  top: 273px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background-color: var(--color-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.speed-finish__badge-label {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.speed-finish__badge-em {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.speed-finish__parts {
  position: absolute;
  inset: 0px;
  pointer-events: none;
}

.speed-finish__part {
  position: absolute;
  line-height: 0;
}

.speed-finish__part img {
  display: block;
  width: 100%;
  height: auto;
}

.speed-finish__part_1 {
  top: -20px;
  left: 57.884231536926144%;
  width: 24.039121756487027%;
  max-width: 120.436px;
}

.speed-finish__part_2 {
  top: -68px;
  left: 140px;
  width: 24.039121756487027%;
  max-width: 120.436px;
}

.speed-finish__part_5 {
  top: -124px;
  right: -65px;
  width: 33.3826347305389%;
  max-width: 167.247px;
}

.speed-finish__part_8 {
  top: 288px;
  left: 55.686627%;
  width: 31.137724550898206%;
  max-width: 142px;
}

.speed-finish__part_10 {
  top: 88px;
  left: 34.73053892215569%;
  width: 24.039121756487027%;
  max-width: 120.436px;
}

.speed-finish__part_13 {
  top: 244px;
  right: -11.57684630738523%;
  width: 22%;
  width: 26.70998003992016%;
}

.speed-finish__part_14 {
  top: 300px;
  left: 21.758483%;
  width: 25.187624750498998%;
  max-width: 126.19px;
}

.speed-finish__part_15 {
  top: -56px;
  left: 0;
  width: 133.817px;
}

@media screen and (max-width: 780px) {
  .speed-finish {
    padding: 0;
  }

  .speed-finish__card {
    padding: 24px;
    align-items: stretch;
  }

  .speed-finish__body {
    height: 100%;
  }

  .speed-finish__notes {
    margin-top: 18px;
  }

  .speed-finish__lead {
    margin: 0 auto 7px;
    font-size: 1.8rem;
    text-align: center;
  }

  .speed-finish__title {
    padding: 0;
    margin: 0 auto 8px;
    font-size: 2.8rem;
    line-height: 1.55;
    text-align: center;
  }

  .speed-finish__sub {
    margin: 0 auto;
    font-size: 1.3rem;
    text-align: center;
  }

  .speed-finish__btns {
    padding-top: 256px;
    gap: 5px;
    z-index: 10;
    position: relative;
  }

  .speed-finish__visual {
    max-width: 100%;
    position: absolute;
    top: 198px;
    left: 0;
    right: 0;
    margin: auto;
  }

  .speed-finish__circle_main {
    top: 32px;
    left: 0;
    right: -32px;
    margin: auto;
    width: 194.491px;
    height: 194.491px;
}

.speed-finish__circle_sub {
    top: 31px;
    right: 40px;
    left: unset;
    width: 81.429px;
    height: 81.429px;
}

.speed-finish__badge {
    top: 143px;
    left: unset;
    right: 60px;
    width: 77.547px;
    height: 77.547px;
}

.speed-finish__part_1 {
    top: 73px;
    right: 36px;
    left: unset;
    width: 81.86px;
    height: 115.732px;
}

.speed-finish__part_5 {
    top: 120px;
    left: -46px;
    right: unset;
    width: 94px;
    height: 133px;
}

.speed-finish__part_8 {
    top: 0;
    right: -55px;
    left: unset;
    width: 95px;
    height: 134px;
}

.speed-finish__part_10 {
    top: 0;
    left: calc(50% - 102px);
    margin: auto;
    width: 77.099px;
    height: 109px;
}
  
.speed-finish__circle_main {
    top: 32px;
    left: -34px;
    right: 0;
    margin: auto;
    width: 194.491px;
    height: 194.491px;
}

.speed-finish__circle_sub {
    top: 31px;
    right: -185px;
    left: 0;
    margin: auto;
    width: 81.429px;
    height: 81.429px;
}

.speed-finish__badge {
    top: 143px;
    left: 0;
    right: -146.547px;
    margin: auto;
    width: 77.547px;
    height: 77.547px;
}

.speed-finish__part_1 {
    top: 73px;
    right: calc(50% - 139px);
    margin: auto;
    width: 81.86px;
    height: 115.732px;
}

.speed-finish__part_5 {
    top: 120px;
    left: calc(50% - 220px);
    right: 0;
    width: 94px;
    height: 133px;
}

.speed-finish__part_8 {
    top: 0;
    right: calc(50% - 230px);
    left: unset;
    width: 95px;
    height: 134px;
}


.speed-finish__part_13 {
    top: 120px;
    right: calc(50% - 231px);
    margin: auto;
    width: 91px;
    height: 128.653px;
}

.speed-finish__part_14 {
    display: none;
}

.speed-finish__part_15 {
    top: 0;
    left: calc(50% - 196px);
    right: 0;
    /* margin: auto; */
    width: 84px;
    height: 118.757px;
}

.speed-finish__part_2 {
    top: 81px;
    left: calc(50% - 148px);
    right: 0;
    width: 84px;
    height: 118.757px;
}
  .speed-finish__btn {
    max-width: 295px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 24px 17px;
    justify-content: flex-start;
    background: #fff;
    text-align: left;
    display: flex;
  }
  
  .speed-finish__btn:nth-of-type(2) {
    letter-spacing: -0.05em;
  }
  
  .speed-finish__btn .btn__icon_direction_right{
  /* position: relative; */
  /* right: -10px; */
  /* top: unset; */
  /* margin: 0; */
  /* transform: unset; */
}
  .speed-finish__notes {
    margin-top: 18px;
  }

  .speed-finish__notes p {
    text-indent: -1em;
    padding-left: 1em;
  }
}

@media screen and (min-width: 781px) {
  .speed-finish__visual {
    flex: 0 1 52.1875%;
    max-width: 501px;
    margin: 0px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }

  .speed-finish__btn {
    max-width: 279px;
    min-height: 58px;
    letter-spacing: 0.07rem;
    padding: 10px 24px;
    justify-content: flex-start;
    background-color: rgb(255, 255, 255);
  }

  .speed-finish__btn:first-child {
    max-width: 312px;
  }
  
  .speed-finish__btn .btn__icon_direction_right{
    right: 16px;
  }
}