main {
  line-height: 1;
}
main * {
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  border: 0;
}
main button {
  background: transparent;
}
main select {
  background: transparent;
  -webkit-appearance: none;
          appearance: none;
}
main a,
main button,
main input,
main optgroup,
main select,
main textarea {
  outline: revert;
}
main a:focus {
  outline: revert;
}
main button,
main [type=button],
main [type=reset],
main [type=submit] {
  cursor: pointer;
}
main button:disabled,
main [type=button]:disabled,
main [type=reset]:disabled,
main [type=submit]:disabled {
  cursor: default;
}
main label[for] {
  cursor: pointer;
}
main td,
main th {
  height: auto;
}

footer {
  margin-top: 0;
}

header {
  position: relative !important;
}

body {
  padding-top: 0 !important;
}

html {
  overflow-y: initial;
}

main {
  font-family: "Roboto", "Noto Sans", sans-serif;
  background-color: #FFD940;
  image-rendering: -webkit-optimize-contrast;
  margin-bottom: 30px;
  overflow-x: hidden;
}

main ::-webkit-full-page-media,
main :future, :root main {
  image-rendering: auto;
}
main:lang(ja) {
  font-family: YakuHanJP, "Roboto", "Noto Sans JP", sans-serif;
}
main:lang(kr) {
  font-family: "Roboto", "Noto Sans KR", sans-serif;
}
main:lang(zh-cmn-Hans) {
  font-family: "Roboto", "Noto Sans SC", sans-serif;
}
main:lang(zh-cmn-Hant) {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
}
main img {
  height: auto;
  vertical-align: bottom;
}
main svg {
  width: auto;
  height: 1em;
  fill: currentColor;
}
[data-whatinput=mouse] main a, [data-whatinput=touch] main a,
[data-whatinput=mouse] main button,
[data-whatinput=touch] main button {
  outline: none;
}
main [data-scroll-fade] {
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: transform, opacity;
  transform: translate3d(0, 20px, 0);
}
main [data-scroll-fade][data-scroll-fade=show] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.AnchorPoint {
  --offset: 0px;
  position: absolute;
  margin-top: calc((var(--local-nav-height) - var(--common-header-height) + var(--offset)) * -1);
  visibility: hidden;
}
.AnchorPoint.AnchorPoint--long {
  --offset: 50px;
}
[data-scroll-lock-locked=true] .AnchorPoint {
  --common-header-height: 0px;
}


.LocalNavPc {
  position: sticky;
  top: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .LocalNavPc {
    display: none;
  }
}

.LocalNavPc__List {
  display: grid;
  grid-auto-flow: column;
  column-gap: 4px;
  align-items: center;
  justify-self: center;
  width: 100%;
  max-width: 1160px;
  height: 100%;
}

.LocalNavPc__Language {
  position: absolute;
  top: 30px;
  right: clamp(20px, 3vw, 45px);
  padding: 10px 40px 10px 16px;
  font-size: clamp(12px, 0.972vw, 14px);
  font-weight: 700;
  transition-duration: 0.2s;
  transition-property: border-radius, box-shadow;
  transform: translateY(-50%);
  background-color: #fff3f2;
  border-radius: 9999px;
}
.LocalNavPc__Language::after {
  position: absolute;
  top: 17px;
  display: block;
  width: 12px;
  height: 8px;
  content: "";
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 2 1" preserveAspectRatio="none"><path d="M0,0 L1,1 L2,0 Z"/></svg>');
          mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 2 1" preserveAspectRatio="none"><path d="M0,0 L1,1 L2,0 Z"/></svg>');
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  transform: translateY(-50%);
  right: 18px;
  transition: all .2s;
}

@media (hover: hover) {
  .LocalNavPc__Language:hover::after {
    top: 19px;
    transition: all .2s;
  }
}

.LocalNavSp {
  position: relative;
  z-index: 10010;
}
@media screen and (min-width: 768.02px), print {
  .LocalNavSp {
    display: none;
  }
}

[data-menu-button] {
  opacity: 0;
}

.LocalNavSp__LineOpen {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  background-color: white;
}

.LocalNavSp__Modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.LocalNavSp__Modal:not(.is-open) {
  display: none;
}

.LocalNavSp__Dialog {
  width: 100%;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow-y: auto;
  background-color: var(--color-crusta);
}
[aria-hidden=false] .LocalNavSp__Dialog {
  animation: nav-dialog-show 0.3s ease-in;
}
[aria-hidden=true] .LocalNavSp__Dialog {
  animation: nav-dialog-hide 0.3s ease-in;
}
@keyframes nav-dialog-show {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes nav-dialog-hide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.LocalNavSp__LanguageWrapper {
  display: grid;
  justify-content: end;
}

.LocalNavSp__Language {
  position: relative;
  padding-right: 12px;
  margin-top: 38px;
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.LocalNavSp__Language::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 8px;
  height: 6px;
  content: "";
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 2 1" preserveAspectRatio="none"><path d="M0,0 L1,1 L2,0 Z"/></svg>');
          mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 2 1" preserveAspectRatio="none"><path d="M0,0 L1,1 L2,0 Z"/></svg>');
  transform: translateY(-50%);
}

.LocalLangNavSp {
  position: absolute;
  top: calc(var(--common-header-height) + 10px);
  left: 16px;
  z-index: 10010;
  display: grid;
  justify-content: start;
  border-radius: 16px;
}
@media screen and (min-width: 768.02px), print {
  .LocalLangNavSp {
    display: none;
  }
}
.LocalLangNavSp.LocalLangNavSp--global {
  top: calc(var(--other-language-common-header-height) + 16px);
}

.LocalLangNavSp__Language {
  position: relative;
  padding-block: 10px;
  padding-right: 27px;
  padding-left: 16px;
  font-size: 12px;
  font-weight: 700;
  background-color: #FFD940;
  border-color: transparent;
  border-radius: 16px;
  transition: box-shadow 0.3s, transform 0.3s, color 0.3s;
}
@media (hover: hover) {
  .LocalLangNavSp__Language:where(:any-link, :enabled, summary):hover {
    color: white;
    box-shadow: inset 0 0 0 32px var(--color-orient);
  }
}
.LocalLangNavSp__Language::after {
  position: absolute;
  top: 50%;
  right: 13px;
  display: block;
  width: 8px;
  height: 6px;
  content: "";
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 2 1" preserveAspectRatio="none"><path d="M0,0 L1,1 L2,0 Z"/></svg>');
          mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 2 1" preserveAspectRatio="none"><path d="M0,0 L1,1 L2,0 Z"/></svg>');
  transform: translateY(-50%);
}

.LanguageList {
  min-width: 185px;
  padding-top: 16px;
  padding-bottom: 16px;
  overflow-y: auto;
  font-size: 14px;
  background-color: white;
}
.LanguageList > li > a {
  position: relative;
  display: block;
  padding: 13px 30px;
}
.LanguageList > li > a::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: black;
  opacity: 0;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .LanguageList > li > a:where(:any-link, :enabled, summary):hover::before {
    opacity: 0.05;
  }
}
.LanguageList > li > a[aria-current] {
  background-color: var(--color-geyser);
}

.ModalSimple {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: scroll;
}
.ModalSimple[aria-hidden=true] {
  display: none;
}

.ModalSimple__Background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: black;
  opacity: 0.5;
}
.ModalSimple.ModalSimple--video .ModalSimple__Background {
  opacity: 1;
}

.ModalSimple__Dialog {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  max-height: 100%;
  color: var(--color-orient);
}
.ModalSimple.ModalSimple--video .ModalSimple__Dialog {
  width: 100%;
  max-width: 900px;
}

.ModalSimple__Close {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  margin-left: auto;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .ModalSimple__Close:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768.02px), print {
  .ModalSimple__Close {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  .ModalSimple__Close {
    margin-bottom: 6px;
  }
}
.ModalSimple__Close::before, .ModalSimple__Close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 36px;
  height: 2px;
  content: "";
  background-color: white;
}
.ModalSimple__Close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.ModalSimple__Close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ModalSimple__Content {
  overflow-y: auto;
}



.pc_show {
  display: block;
}

.sp_show {
  display: none;
}

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

.kv{
  position: relative;
  max-width: 2560px;
  margin: 0 auto;
}

.kv_title{
  position: absolute;
  width: 32%;
  top:50%;
  left:3%;
  transform: translate(0, -50%);
}

@media only screen and (max-width: 768px) {
  .kv_title{
    width: 75%;
    top:26%;
    left:50%;
    transform: translate(-50%, -50%);
  }
}

.collabo{
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
  caret-color: transparent;
}

.pixel_collabo{
  padding: 50px 20px;
}

.pixel_collabo .slick-list{
  overflow:initial;
}

.pixel_collabo h2{
  font-size: clamp(20px, 4vw, 40px);
  font-weight: bold;
  letter-spacing: 1.5px;
  line-height: 1.3em;
  margin-bottom: 30px;
  white-space: nowrap;
}

.pixel_collabo p{
  font-size: clamp(15px, 3vw, 18px);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.5em;
text-align: center;
}

.collabo_slider{
  margin-top: 50px;
  margin-left: 15px;
}

.collabo_slider img{
  width: 100%;
  padding-right: 20px;
}

.collabo_slider .slick-prev:before{
  content: url(../images/features_arrow_prev.svg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left:-60px;
  margin: auto;
  -webkit-transform: rotate(0)!important;
  transform: rotate(0)!important;
  border-bottom: none!important;
  border-left: none!important;
  opacity: 1!important;
}

.collabo_slider .slick-next:before{
  content: url(../images/features_arrow_next.svg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left:5px;
  margin: auto;
  -webkit-transform: rotate(0)!important;
  transform: rotate(0)!important;
  border-top: none!important;
  border-right: none!important;
  opacity: 1!important;
}

@media only screen and (max-width: 768px) {
  .pixel_collabo h2{
    font-size: clamp(19px, 4vw, 28px);
    letter-spacing: 1px;
  }
  
  .pixel_collabo p{
    font-size: clamp(13px, 3vw, 16px);
    text-align: center;
  }

  .collabo_slider .slick-prev:before{
    left:-60px;
  }
  
  .collabo_slider .slick-next:before{
    left:0;
  }
  
}

.pixel_features{
  margin: 50px 0;
}

.pixel_features h2{
  font-size: clamp(20px, 5vw, 40px);
  font-weight: bold;
  letter-spacing: 1.5px;
  line-height: 1.5em;
}

.pixel_features h3{
  font-size: clamp(18px, 2.7vw, 24px);
  font-weight: bold;
  letter-spacing: 1px;
  white-space: nowrap;
  margin: 20px auto;
}

.features-first-title{
  line-height: 1.3em;
}

.features-second-title{
  line-height: 60px;
}

.pixel_features p{
  text-align: left;
  margin-top: 8px;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.5em;
}

.features_box{
  display: flex;
  flex-direction: row;
justify-content: center;
align-items: start;
}

.features_box_inner{
  width: 33%;
  padding: 30px;
}

.features_box_inner h4{
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 600;
  text-align: left;
  margin: 0;
  line-height: normal;
}

@media only screen and (max-width: 768px) {

  .features_box{
    flex-direction: column;
  }
  .features_box_inner{
    width: 100%;
    padding: 20px 30px;
  }

  .pixel_features h2{
margin: 0 20px 20px;
  }

  .pixel_features h3{
    font-size: clamp(22px, 3vw, 24px);
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  .features-first-title{
    line-height: 1.3em;
  }
  
  .features-second-title{
    line-height: 40px;
  }

  .pixel_features p{
    font-size: clamp(12px, 2vw, 15px);
  }
}

.print{
  margin: 50px 0;
}

.print h2{
  font-size: clamp(20px, 4vw, 40px);
  font-weight: bold;
  letter-spacing: 1.5px;
  line-height: 1.5em;
}

.print_box{
  display: flex;
  flex-direction: row;
justify-content: center;
align-items: center;
padding: 20px;
}

.printbox_inner{
  width: 50%;
  padding: 25px;
  margin-top: 0;
}

.printbox_inner h3{
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: bold;
  letter-spacing: 1.5px;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.printbox_inner p{
  text-align: left;
  margin-top: 20px;
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.5em;
}

@media only screen and (max-width: 768px) {
.print{
  padding: 0 30px;
}

  .print_box{
    flex-direction: column-reverse;
    margin-top: 30px;
    gap:20px;
    padding: 0;
  }

  .printbox_inner{
    width: 100%;
    padding: 0;
  }

  .print h2{
    font-size: clamp(17px, 4vw, 40px);
    letter-spacing: 1px;
  }

  .printbox_inner p{
    font-size: clamp(12px, 2vw, 15px);
  }

}


.favorite{
  background: #fff3f2;
  border-radius: 40px;
  margin: 50px 50px 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
}

.favorite_item {
  display: flex;
  flex-direction: column;
  align-items: center;
justify-content: stretch;
}

.favorite_item h2,
.favorite_item p,
.favorite_item img
{
  flex-grow: 1;
  text-align: center;
}

.favorite_left{
  width: 50%;
  padding: 20px;
}

.favorite_left img{
  width: 92%;
  padding: 20px 0;
}

.favorite_right{
  width: 50%;
  padding: 20px;
}

.favorite_right img{
  width: 50%;
  margin: 0 0 0 15%;
}

.favorite_left h3{
  margin-top: 30px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: bold;
}


.favorite h2{
  font-size: clamp(20px, 3vw, 24px);
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.3em;
}

.favorite p{
  margin-top: 20px;
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 400;
  line-height: 1.5em;
  text-align: justify;
  padding: 0 20px;
}


@media only screen and (max-width: 768px) {

  .favorite{
    padding: 10px;
    border-radius: 30px;
    margin: 50px 30px;
    flex-direction: column;
    gap:40px;
  }

  .favorite img{
    width: 100%;
  }

  .favorite p{
    font-size: clamp(12px, 2vw, 15px);
    padding: 0;
  }

  .favorite_left{
    width: 100%;
  }

  .favorite_right{
    width: 100%;
  }

  .favorite_right img{
    width: 70%;
    margin: 0 0 0 29%;
  }

}


.fastpair{
  margin: 100px 0 0;
  padding:0 20px;
}

.fastpair h2{
  font-size: clamp(23px, 4.5vw, 40px);
  font-weight: bold;
  letter-spacing: 1.5px;
  line-height: 1.5em;
}

.pair_step_box{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap:20px;
  padding: 50px 0 30px;
}

.step_box{
  width: 30%;
  margin: 0;
  background: #fff3f2;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.step_image_box{
  padding: 20px;
}

.step_image_box h2{
  font-size: clamp(25px, 3vw, 30px);
}

.step_box p{
  margin-top: 20px;
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 400;
  letter-spacing: .5px;
  line-height: 1.3em;
  text-align: left;
  padding: 0 10px;
}

.pair_caution p{
    text-align: left;
    font-size: clamp(11px, 1.5vw, 13px);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.5em;
    margin-top: 40px;
}

@media only screen and (max-width: 768px) {

  .step_box p{
    font-size: clamp(12px, 2vw, 15px);
  }

  .fastpair{
    padding:0 30px;
  }

  .pair_step_box{
    flex-direction: column;
    gap:40px;
  }

  .step_box{
    width: 100%;
  }

  .pair_caution p{
    font-size: 12px;
    margin-left: 0;
    margin-top: 20px;
}

}


.link3_function{
  margin: 100px 50px 0;
  padding:40px;
  background-color: #fff3f2;
  border-radius: 30px;
}

.link3_function h2{
  font-size: clamp(20px, 5vw, 40px);
  font-weight: bold;
  letter-spacing: 1.5px;
  line-height: 1.3em;
}

.function_inner_box h2{
  font-size: clamp(18px, 3.5vw, 32px);
  font-weight: bold;
  letter-spacing: 1.5px;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.function_inner_box h3{
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 1.5px;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.function_box{
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 20px 0 ;
}

.function_inner_box{
  width: 50%;
  margin: 0;
  padding: 40px 2vw 0;
}

.function_inner_box img{
  margin: 20px 0;
  width: 90%;
}

.function_inner_box p{
  margin-top: 20px;
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 400;
  letter-spacing: .5px;
  line-height: 1.3em;
  text-align: left;
  padding: 0 20px;
}

@media only screen and (max-width: 768px) {

  .function_inner_box h2{
    font-size: clamp(22px, 5vw, 28px);
    margin-bottom: 10px;
  }

  .function_inner_box h3{
    margin-bottom: 10px;
  }

  .function_inner_box p{
    font-size: clamp(12px, 2vw, 15px);
  }

  .link3_function{
    margin: 80px 30px 0;
    padding:30px 10px;
  }

  .function_box{
    flex-direction: column;
    gap:20px;
  }

  .function_inner_box{
    width: 100%;
    padding: 20px 0;
  }
}



.link_area{
  display: flex;
  flex-direction: row;
  margin: 100px 50px 0;
  gap:2vw;
padding-bottom: 100px;
justify-content: center;
}

.link_btn{
  width: 50%;
  background-color: #fff3f2;
  border-radius: clamp(15px, 2vw, 30px);
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.link_btn.product_second{
  padding: 20px;
}

.link_btn picture{
  width: 46%;
}

.link_btn p{
  font-size: 12px;
  margin-top: 20px;
  line-height: 1.4em;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}

.product_second picture{
  width: 45%;
}

.product_image_first{
  width: 70%;
}

.btn_text_area{
  width: 54%;
}

.txt_first{
  padding: 0 25px 0 0;
}

.txt_second{
  padding: 0 10px;
}

.btn_text_area h2{
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.2em;
}

.first_title{
  /* margin-top: 10px; */
  margin-bottom: 20px;
}

.second_title{
  margin-bottom: 20px;
}

.btn_text_area a{
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0px;
  line-height: 1.5em;
  padding: 7px 32px 7px 15px;
  border: 2px solid #000;
  border-radius: 9999px;
  background-color: transparent;
  transition: all .3s;
  cursor: pointer;
  position:relative;
}
.btn_text_area a::after {
    content: '';
    background-image: url(../images/icon_arrow.svg);
    width: 15px;
    height: 15px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    position: absolute;
}
.btn_text_area a:hover{
  color: #fff;
  background-color: #000;
  transition: all .3s;
}

@media only screen and (max-width: 945px) {
  .txt_first{
    padding: 0 0 0 0;
  }
  .btn_text_area a{
    font-size: 11px;
    padding: 7px 25px 7px 10px;
  }
  .btn_text_area a::after {
    width: 13px;
    height: 13px;
    right: 9px;
  }
  .link_btn.product_second {
    padding: 20px 0 20px 15px;
  }
}

@media only screen and (max-width: 768px) {
  .link_area{
    display: flex;
    flex-direction: column;
    margin: 100px 30px 0;
    gap:10vw;
  padding-bottom: 100px;
  justify-content: center;
  align-items: center;
  }

  .link_btn{
    width: 100%;
  }
  .link_btn.product_second{
    padding-left: 0;
    padding-right: 0;
  }

  .link_btn picture{
    width: 35%;
  }

  .link_btn p{
    font-size: 10px;
    margin-top: 15px;
    line-height: 1.4em;
  }

  .btn_text_area{
    width: 55%;
  }

  .btn_text_area h2{
    font-size: clamp(13px, 3.5vw, 24px);
  }

  .txt_second span{
    font-size: clamp(10px, 2.5vw, 15px);
  }

  .txt_first{
    padding: 0px;
  }

  .product_image_first{
    width: 80%;
  }

.btn_text_area a {
    font-size: 12px;
    letter-spacing: 0px;
    padding: 7px 28px 7px 9px;
}
.btn_text_area a::after {
    right: 9px;
    transform: translateY(-50%);
    position: absolute;
}
}

@media only screen and (max-width: 389px) {
  .btn_text_area a{
    font-size: 11px;
    padding: 7px 25px 7px 10px;
  }
}

@media only screen and (max-width: 365px) {
  .btn_text_area{
    width: 61%;
  }
}

.download_app{
  text-align: center;
  padding: 30px 20px 70px;
}

.download_app h2{
  font-size: clamp(24px, 3vw, 30px);
  font-weight: bold;
  margin-bottom: 30px;
}

.download_app p{
  font-size: clamp(10px, 2.5vw, 13px);
  line-height: 1.5em;
}

.download_app img{
  display: block;
  margin: 0 auto;
}

.app_icon{
  width: 100px;
}

.google_badge{
  width: 250px;
  opacity: 1;
  padding-top: 20px;
  transition: all .3s;
}

.google_badge:hover{
  opacity: 0.8;
  transition: all .3s;
}

.download_app a{
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  .download_app{
    padding: 10px 20px 70px;
  }
}


.mall_link{
  display: block;
  width: 60%;
  margin: 20px auto 70px;
transition: all .3s ease;
}

.mall_link a{
  display: block;
  font-size: 25px;
  padding: 60px 0;
  font-weight: bold;
  background-color: #fff3f2;
    border-radius: 10px;
  transition: all .3s ease;
  position: relative;
}

.mall_link a::after{
  content: '';
  background-image: url(../images/icon_arrow.svg);
  width: 30px;
  height: 30px;
  top:50%;
  right: 5vw;
  transform: translateY(-50%);
  position: absolute;
}

.mall_link:hover{
  transform: scale(1.02, 1.02);
}

.mall_link:hover a{
  background-color: #fbecec;
}

@media only screen and (max-width: 768px) {
  .mall_link{
  width: 87%;
  margin: 0 auto 80px;
}
.mall_link a{
  font-size: 20px;
  padding: 60px 0;
}
}

@media only screen and (max-width: 385px) {
  .mall_link a{
  font-size: 20px;
  padding: 60px 30px 60px 0;
}
}