@charset "UTF-8";
:root {
  --color-main: #2b84b0;
  --color-pc: #599ce3;
  --color-tablet: #00c4ba;
  --color-mobile: #00dc9e;
  --color-simple: #00d593;
  --color-studio: #027ef8;
  --color-text: #333;
  --color-white: #fff;
  --font-noto-sans: "Noto Sans", sans-serif;
  --font-noto-sans-jp: "Noto Sans JP", sans-serif;
  --font-noto-sans-kr: "Noto Sans KR", sans-serif;
  --font-noto-sans-tc: "Noto Sans TC", sans-serif;
  --font-noto-sans-sc: "Noto Sans SC", sans-serif;
  --font-radio-canada-big: "Radio Canada Big", sans-serif;
}

.column-content__wrapper, .column-content__wrapper--add-bg {
  padding-bottom: 0;
}

#input_wrapper {
  font-family: var(--font-noto-sans);
  color: var(--color-text);
}
@media all and (min-width: 480px) and (max-width: 767px) {
  #input_wrapper {
    margin-top: 14px;
  }
}
#input_wrapper.ja {
  font-family: var(--font-noto-sans-jp);
}
#input_wrapper.ko {
  font-family: var(--font-noto-sans-kr);
}
#input_wrapper.zh {
  font-family: var(--font-noto-sans-tc);
}
#input_wrapper.sc {
  font-family: var(--font-noto-sans-sc);
}

#official_top {
  background: var(--color-white);
  overflow: hidden;
  /* .tab_menu_area */
  /* .switch_device_content_wrapper & .switch_mode_content_wrapper */
  /* .introduction_area */
  /* .tips_area */
  /* .function_section */
  /* .bnr_area */
}
#official_top img {
  width: 100%;
  height: auto;
}
#official_top a:hover {
  opacity: 0.8;
}
#official_top .only_pc {
  display: block;
}
@media all and (max-width: 768px) {
  #official_top .only_pc {
    display: none;
  }
}
#official_top .only_mobile {
  display: none;
}
@media all and (max-width: 767px) {
  #official_top .only_mobile {
    display: block;
  }
}
#official_top .areas {
  position: relative;
  z-index: 1;
}
#official_top .areas.tab_menu_area {
  z-index: 2;
}
#official_top .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 30px;
}
@media all and (max-width: 767px) {
  #official_top .inner {
    padding: 0 10px;
  }
}
#official_top .btn_arrow {
  display: inline-block;
}
#official_top .btn_arrow > a, #official_top .btn_arrow > span {
  height: 40px;
  padding: 0 20px 0 10px;
  /* height: 30px;
  padding: 0 15px 0 8px; */
  border-radius: 9999px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#official_top .btn_arrow > a::before, #official_top .btn_arrow > span::before {
  content: "";
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/icon_arrow.svg") no-repeat 0 0/contain;
  width: 20px;
  height: 20px;
  /* width: 15px;
  height: 15px; */
  display: block;
  position: relative;
  /* margin-right: 20px; */
  margin-right: 15px;
  z-index: 2;
}
#official_top .btn_arrow > a::after, #official_top .btn_arrow > span::after {
  content: "";
  background: var(--color-main);
  width: 40px;
  /* width: 30px; */
  height: 100%;
  border-radius: 9999px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.2s;
  z-index: 1;
}
#official_top .btn_arrow > a:hover, #official_top .btn_arrow > span:hover {
  opacity: 1;
}
@media (hover: hover) {
  #official_top .btn_arrow > a:hover::after, #official_top .btn_arrow > span:hover::after {
    width: 100%;
  }
  #official_top .btn_arrow > a:hover span, #official_top .btn_arrow > span:hover span {
    color: var(--color-white);
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .btn_arrow > a, #official_top .btn_arrow > span {
    height: 4vw;
    padding: 0 2vw 0 1vw;
  }
  #official_top .btn_arrow > a::before, #official_top .btn_arrow > span::before {
    width: 2vw;
    height: 2vw;
    margin-right: 2vw;
  }
  #official_top .btn_arrow > a::after, #official_top .btn_arrow > span::after {
    content: "";
    width: 4vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .btn_arrow > a, #official_top .btn_arrow > span {
    height: 8vw;
    padding: 0 4vw 0 2vw;
  }
  #official_top .btn_arrow > a::before, #official_top .btn_arrow > span::before {
    width: 4.1333333333vw;
    height: 4.1333333333vw;
    margin-right: 4vw;
  }
  #official_top .btn_arrow > a::after, #official_top .btn_arrow > span::after {
    width: 8vw;
  }
}
#official_top .btn_arrow > a span, #official_top .btn_arrow > span span {
  color: var(--color-text);
  font-size: 16px;
  /* font-size: 12px; */
  font-weight: 500;
  line-height: 1;
  position: relative;
  transition: 0.2s;
  z-index: 2;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .btn_arrow > a span, #official_top .btn_arrow > span span {
    font-size: 1.6vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .btn_arrow > a span, #official_top .btn_arrow > span span {
    font-size: 3.2vw;
  }
}
#official_top .btn_arrow.simple a::after {
  background: var(--color-simple);
}
#official_top .btn_arrow.studio a::after {
  background: var(--color-studio);
}
#official_top .page_in_links {
  padding-top: 70px;
  margin-top: -70px;
}
@media all and (max-width: 767px) {
  #official_top .page_in_links {
    padding-top: unset;
    margin-top: unset;
  }
}
#official_top .kv_area {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/kv_bg_pc.png") no-repeat 50% 50%/cover;
  /* height: 225px; */
  height: 168px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media all and (max-width: 767px) {
  #official_top .kv_area {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/kv_bg.png") no-repeat 50% 50%/cover;
    height: 30vw;
  }
}
#official_top .kv_area::before {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid var(--color-white);
  position: absolute;
}
#official_top .kv_area h2 {
  text-align: center;
}
#official_top .kv_area h2 .csp {
  margin-bottom: 0.5em;
  display: flex;
  justify-content: center;
  position: relative;
}
#official_top .kv_area h2 .csp::before, #official_top .kv_area h2 .csp::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
}
#official_top .kv_area h2 .csp::before {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/kv_deco_book.png") no-repeat 0 0/contain;
  /* width: 71px;
  height: 61px;
  top: -21px;
  left: -490px; */
  width: 53px;
  height: 46px;
  top: -17px;
  left: -370px;
  right: 0;
}
#official_top .kv_area h2 .csp::after {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/kv_deco_light.png") no-repeat 0 0/contain;
  /* width: 56px;
  height: 67px;
  top: -26px;
  right: -510px; */
  width: 42px;
  height: 50px;
  top: -19px;
  right: -380px;
  left: 0;
}
@media all and (max-width: 767px) {
  #official_top .kv_area h2 .csp::before {
    width: 7.7333333333vw;
    height: 6.8vw;
    top: -2.4vw;
    left: -55.3vw;
  }
  #official_top .kv_area h2 .csp::after {
    width: 6.1333333333vw;
    height: 7.3333333333vw;
    top: -2.6vw;
    right: -58.3vw;
  }
}
#official_top .kv_area h2 .csp div {
  font-family: var(--font-radio-canada-big);
  color: var(--color-main);
  /* font-size: 40px; */
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-style: italic;
  position: relative;
  text-shadow: 1px 1px 0 var(--color-main), -1px -1px 0 var(--color-main), -1px 1px 0 var(--color-main), 1px -1px 0 var(--color-main), 0px 1px 0 var(--color-main), -1px 0 var(--color-main), -1px 0 0 var(--color-main), 1px 0 0 var(--color-main);
}
#official_top .kv_area h2 .csp div::before {
  content: attr(data-txt);
  color: var(--color-white);
  /* font-size: 40px; */
  font-size: 30px;
  position: absolute;
  left: 0.08em;
  top: 0.08em;
  text-shadow: 1px 1px 0 var(--color-main), -1px -1px 0 var(--color-main), -1px 1px 0 var(--color-main), 1px -1px 0 var(--color-main), 0px 1px 0 var(--color-main), -1px 0 var(--color-main), -1px 0 0 var(--color-main), 1px 0 0 var(--color-main);
  z-index: 1;
}
@media all and (max-width: 767px) {
  #official_top .kv_area h2 .csp div {
    font-size: 4.5333333333vw;
    text-shadow: 0.5px 0.5px 0 var(--color-main), -0.5px -0.5px 0 var(--color-main), -0.5px 0.5px 0 var(--color-main), 0.5px -0.5px 0 var(--color-main), 0px 0.5px 0 var(--color-main), -0.5px 0 var(--color-main), -0.5px 0 0 var(--color-main), 0.5px 0 0 var(--color-main);
  }
  #official_top .kv_area h2 .csp div::before {
    font-size: 4.5333333333vw;
    text-shadow: 0.5px 0.5px 0 var(--color-main), -0.5px -0.5px 0 var(--color-main), -0.5px 0.5px 0 var(--color-main), 0.5px -0.5px 0 var(--color-main), 0px 0.5px 0 var(--color-main), -0.5px 0 var(--color-main), -0.5px 0 0 var(--color-main), 0.5px 0 0 var(--color-main);
  }
}
#official_top .kv_area h2 .csp div:not(:last-of-type) {
  margin-right: 0.2em;
}
#official_top .kv_area h2 .csp div:nth-of-type(1)::first-letter {
  color: #5a9ce3;
  text-shadow: 1px 1px 0 #5a9ce3, -1px -1px 0 #5a9ce3, -1px 1px 0 #5a9ce3, 1px -1px 0 #5a9ce3, 0px 1px 0 #5a9ce3, -1px 0 #5a9ce3, -1px 0 0 #5a9ce3, 1px 0 0 #5a9ce3;
}
@media all and (max-width: 767px) {
  #official_top .kv_area h2 .csp div:nth-of-type(1)::first-letter {
    text-shadow: 0.5px 0.5px 0 #5a9ce3, -0.5px -0.5px 0 #5a9ce3, -0.5px 0.5px 0 #5a9ce3, 0.5px -0.5px 0 #5a9ce3, 0px 0.5px 0 #5a9ce3, -0.5px 0 #5a9ce3, -0.5px 0 0 #5a9ce3, 0.5px 0 0 #5a9ce3;
  }
}
#official_top .kv_area h2 .csp div:nth-of-type(2)::first-letter {
  color: #00c4ba;
  text-shadow: 1px 1px 0 #00c4ba, -1px -1px 0 #00c4ba, -1px 1px 0 #00c4ba, 1px -1px 0 #00c4ba, 0px 1px 0 #00c4ba, -1px 0 #00c4ba, -1px 0 0 #00c4ba, 1px 0 0 #00c4ba;
}
@media all and (max-width: 767px) {
  #official_top .kv_area h2 .csp div:nth-of-type(2)::first-letter {
    text-shadow: 0.5px 0.5px 0 #00c4ba, -0.5px -0.5px 0 #00c4ba, -0.5px 0.5px 0 #00c4ba, 0.5px -0.5px 0 #00c4ba, 0px 0.5px 0 #00c4ba, -0.5px 0 #00c4ba, -0.5px 0 0 #00c4ba, 0.5px 0 0 #00c4ba;
  }
}
#official_top .kv_area h2 .csp div:nth-of-type(3)::first-letter {
  color: #00db9d;
  text-shadow: 1px 1px 0 #00db9d, -1px -1px 0 #00db9d, -1px 1px 0 #00db9d, 1px -1px 0 #00db9d, 0px 1px 0 #00db9d, -1px 0 #00db9d, -1px 0 0 #00db9d, 1px 0 0 #00db9d;
}
@media all and (max-width: 767px) {
  #official_top .kv_area h2 .csp div:nth-of-type(3)::first-letter {
    text-shadow: 0.5px 0.5px 0 #00db9d, -0.5px -0.5px 0 #00db9d, -0.5px 0.5px 0 #00db9d, 0.5px -0.5px 0 #00db9d, 0px 0.5px 0 #00db9d, -0.5px 0 #00db9d, -0.5px 0 0 #00db9d, 0.5px 0 0 #00db9d;
  }
}
#official_top .kv_area h2 .csp div span {
  z-index: 2;
  position: relative;
}
#official_top .kv_area h2 .main {
  color: var(--color-main);
  /* font-size: 56px; */
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media all and (max-width: 767px) {
  #official_top .kv_area h2 .main {
    font-size: 6.6666666667vw;
  }
}
#official_top .kv_area h2 .main.en, #official_top .kv_area h2 .main.fr, #official_top .kv_area h2 .main.es, #official_top .kv_area h2 .main.de {
  letter-spacing: unset;
}
#official_top .kv_area h2 .main .marker {
  background: linear-gradient(transparent 65%, rgba(255, 204, 0, 0.5) 65%);
}
#official_top .tab_menu_area {
  /* padding-top: 38px; */
  padding-top: 29px;
  border-bottom: solid 4px;
}
@media all and (max-width: 767px) {
  #official_top .tab_menu_area {
    padding-top: 5.0666666667vw;
    border-bottom: solid 2x;
  }
}
#official_top .tab_menu_area.pc {
  border-color: var(--color-pc);
}
#official_top .tab_menu_area.tablet {
  border-color: var(--color-tablet);
}
#official_top .tab_menu_area.mobile {
  border-color: var(--color-mobile);
}
#official_top .tab_menu_area .ttl {
  color: var(--color-main);
  /* font-size: 26px; */
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  /* margin-bottom: 35px; */
  margin-bottom: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#official_top .tab_menu_area .ttl::before {
  content: "";
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/tab_menu_deco_tablet.png") no-repeat 0 0/contain;
  display: block;
  /* width: 56px;
  height: 37px;
  margin-right: 15px; */
  width: 42px;
  height: 28px;
  margin-right: 11px;
}
@media all and (max-width: 767px) {
  #official_top .tab_menu_area .ttl {
    font-size: 4vw;
    margin-bottom: 4.6666666667vw;
  }
  #official_top .tab_menu_area .ttl::before {
    width: 8vw;
    height: 5.3333333333vw;
    margin-right: 2vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .tab_menu_area .device_menu_wrapper .inner {
    padding: 0;
  }
}
#official_top .tab_menu_area .device_menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 60px;
}
@media all and (max-width: 767px) {
  #official_top .tab_menu_area .device_menu {
    height: 10.6666666667vw;
  }
}
#official_top .tab_menu_area .device_menu .items {
  width: 28%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75%;
  border-radius: 10px 10px 0 0;
  transition: 0.2s;
}
#official_top .tab_menu_area .device_menu .items.pc {
  background: var(--color-pc);
}
#official_top .tab_menu_area .device_menu .items.tablet {
  background: var(--color-tablet);
}
#official_top .tab_menu_area .device_menu .items.mobile {
  background: var(--color-mobile);
}
#official_top .tab_menu_area .device_menu .items.selected {
  width: 42%;
  height: 100%;
}
#official_top .tab_menu_area .device_menu .items.selected:hover {
  cursor: default;
}
@media (hover: hover) {
  #official_top .tab_menu_area .device_menu .items:not(.selected):hover {
    height: 100%;
  }
}
#official_top .tab_menu_area .device_menu .items:hover {
  cursor: pointer;
}
#official_top .tab_menu_area .device_menu .items span {
  color: var(--color-white);
  /* font-size: 24px; */
  font-size: 20px;
  font-weight: 700;
  pointer-events: none;
}
@media all and (max-width: 767px) {
  #official_top .tab_menu_area .device_menu .items span {
    font-size: 3.2vw;
  }
}
#official_top .tab_menu_area .mode_menu_wrapper .inner {
  padding: 30px 60px 26px;
}
@media all and (max-width: 767px) {
  #official_top .tab_menu_area .mode_menu_wrapper .inner {
    padding: 2.6666666667vw 10vw 2.4vw;
  }
}
#official_top .tab_menu_area .mode_menu_wrapper .mode_menu {
  background: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  height: 70px;
  margin: 0 auto;
  position: relative;
  border-radius: 9999px;
}
#official_top .tab_menu_area .mode_menu_wrapper .mode_menu::before {
  content: "";
  display: block;
  width: calc(50% - 5px);
  height: 60px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
  border-radius: 9999px;
  transition: 0.2s;
  z-index: 1;
}
@media all and (max-width: 767px) {
  #official_top .tab_menu_area .mode_menu_wrapper .mode_menu {
    height: 12vw;
  }
  #official_top .tab_menu_area .mode_menu_wrapper .mode_menu::before {
    width: calc(50% - 4px);
    height: calc(12vw - 8px);
    left: 4px;
  }
}
#official_top .tab_menu_area .mode_menu_wrapper .mode_menu .items {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: 0.2s;
}
#official_top .tab_menu_area .mode_menu_wrapper .mode_menu .items.selected:hover {
  pointer-events: none;
}
#official_top .tab_menu_area .mode_menu_wrapper .mode_menu .items.selected span {
  color: var(--color-white);
}
#official_top .tab_menu_area .mode_menu_wrapper .mode_menu .items:hover {
  cursor: pointer;
}
#official_top .tab_menu_area .mode_menu_wrapper .mode_menu .items:hover:not(.selected) {
  opacity: 0.8;
}
#official_top .tab_menu_area .mode_menu_wrapper .mode_menu .items span {
  color: #888;
  /* font-size: 20px; */
  font-size: 18px;
  font-weight: bold;
  pointer-events: none;
}
@media all and (max-width: 767px) {
  #official_top .tab_menu_area .mode_menu_wrapper .mode_menu .items span {
    font-size: 3.2vw;
  }
}
#official_top .tab_menu_area.pc .mode_menu_wrapper {
  background: var(--color-pc);
}
#official_top .tab_menu_area.tablet .mode_menu_wrapper {
  background: var(--color-tablet);
}
#official_top .tab_menu_area.mobile .mode_menu_wrapper {
  background: var(--color-mobile);
}
#official_top .tab_menu_area.simple .mode_menu_wrapper .mode_menu::before {
  background: var(--color-simple);
  transform: translateX(0);
}
#official_top .tab_menu_area.studio .mode_menu_wrapper .mode_menu::before {
  background: var(--color-studio);
  transform: translateX(100%);
}
#official_top .switch_device_content_wrapper {
  transition: 0.2s;
}
#official_top .switch_device_content_wrapper .switch_device_content:not(.selected) {
  display: none;
}
#official_top .switch_mode_content_wrapper {
  transition: 0.2s;
}
#official_top .switch_mode_content_wrapper .switch_mode_content:not(.selected) {
  display: none;
}
#official_top .introduction_area {
  counter-reset: number 0;
}
#official_top .introduction_area #page_in_link1 {
  padding-top: 70px;
  margin-top: -70px;
  position: relative;
  pointer-events: none;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area #page_in_link1 {
    padding-top: unset;
    margin-top: unset;
  }
}
#official_top .introduction_area .inner {
  /* padding-top: 40px;
  padding-bottom: 130px; */
  padding-top: 30px;
  padding-bottom: 98px;
  max-width: 1140px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .inner {
    padding-top: 6.6666666667vw;
    padding-bottom: 13.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content {
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat-y;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content {
    background-size: 14.9vw 24.5vw, 23.1vw 21.9vw, 23.9vw 37.8vw, 18.6vw 18.5vw, 25.2vw 36.7vw, 20.5vw 25.7vw, 100%;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content {
    background-size: 11.8666666667vw 19.6vw, 18.2666666667vw 17.3333333333vw, 19.0666666667vw 30.2666666667vw, 24.8vw 24.6666666667vw, 20.1333333333vw 29.3333333333vw, 16.4vw 20.5333333333vw, 100%;
  }
}
#official_top .introduction_area .switch_device_content .step_wrapper {
  counter-increment: number 1;
  position: relative;
}
#official_top .introduction_area .switch_device_content .step_wrapper.step1 {
  /* margin-bottom: 170px; */
  margin: 0 auto;
}
#official_top .introduction_area .switch_device_content .step_wrapper:not(.step1) {
  margin: 128px auto 0;
}
#official_top .introduction_area .switch_device_content .step_wrapper:not(.step1)::before {
  content: "";
  display: block;
  /* width: 78px;
  height: 77px; */
  width: 59px;
  height: 58px;
  position: absolute;
  right: 0;
  /* bottom: -130px; */
  top: -88px;
  left: 0;
  margin: auto;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper:not(.step1) {
    margin: 25.3333333333vw auto 0;
  }
  #official_top .introduction_area .switch_device_content .step_wrapper:not(.step1)::before {
    width: 10.4vw;
    height: 10.2666666667vw;
    top: -17.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_ttl .step {
  font-family: var(--font-radio-canada-big);
  color: var(--color-main);
  /* font-size: 16px; */
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  /* width: 80px;
  height: 80px;
  margin-right: 15px; */
  width: 60px;
  height: 60px;
  margin-right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-main);
  border-radius: 9999px;
  position: relative;
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_ttl .step::before {
  content: "";
  display: block;
  width: inherit;
  height: inherit;
  position: absolute;
  left: 4px;
  top: 4px;
  border-radius: 9999px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_ttl .step {
    font-size: 2.1333333333vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    margin-right: 2.6666666667vw;
  }
  #official_top .introduction_area .switch_device_content .step_wrapper .step_ttl .step::before {
    left: 0.5333333333vw;
    top: 0.5333333333vw;
  }
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_ttl .step .num {
  margin: -0.3em 0 0 0.3em;
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_ttl .step .num::before {
  content: counter(number);
  font-size: 1.6em;
  margin-top: -0.3em;
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_ttl .ttl {
  /* font-size: 34px; */
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_ttl .ttl {
    font-size: 4.5333333333vw;
  }
}
#official_top .introduction_area .switch_device_content .step_wrapper .lead {
  /* font-size: 18px; */
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  /* margin-top: 20px; */
  margin-top: 15px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .lead {
    font-size: 3.4666666667vw;
    margin-top: 5.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_box {
  /* margin-top: 40px; */
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box {
    margin-top: 5.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_box .media {
  width: 65%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media all and (min-width: 1001px) and (max-width: 1160px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .media {
    width: 60%;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .media {
    width: 65vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .media {
    width: 100%;
  }
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_box .media.youtube {
  aspect-ratio: 16/9;
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_box .media iframe {
  width: 100%;
  height: 100%;
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box {
  width: 40%;
  position: relative;
  z-index: 1;
}
@media all and (min-width: 1001px) and (max-width: 1160px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box {
    width: 45%;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box {
    width: 65vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box {
    width: 93.3333333333vw;
    right: -2vw;
  }
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box .ttl {
  /* font-size: 26px; */
  font-size: 20px;
  font-weight: 700;
  /* margin-bottom: 20px; */
  margin-bottom: 15px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box .ttl {
    font-size: 2.6vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box .ttl {
    font-size: 3.4666666667vw;
    margin-bottom: 2vw;
  }
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box .txt {
  font-size: 16px;
  line-height: 1.6;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box .txt {
    font-size: 1.6vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box .txt {
    font-size: 3.2vw;
    line-height: 1.4;
  }
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box.simple .ttl {
  color: var(--color-simple);
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box.studio .ttl {
  color: var(--color-studio);
}
#official_top .introduction_area .switch_device_content.pc {
  background-image: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco01.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco02_pc.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco03_pc.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco04.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco05_pc.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco06_pc.png"), linear-gradient(#effffe, #e5f3ff);
  background-position: calc(50% - 500px) 4%, calc(50% + 490px) 26%, calc(50% - 500px) 42%, calc(50% + 570px) 51%, calc(50% + 690px) 90%, calc(50% - 650px) 97%, 0 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.pc {
    background-position: -2% 5%, 110% 27%, -4% 39%, 106% 48%, 110% 90%, -2% 99%, 0 0;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.pc {
    background-position: 4% 3%, 110% 3%, -4% 43%, 108% 45%, 110% 75%, -2% 99%, 0 0;
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper .step_ttl .step::before {
  background: rgba(90, 156, 227, 0.15);
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 {
    margin: 0 auto 25.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box {
  position: relative;
  height: 424px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box {
    height: 57vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box {
    height: unset;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box.de {
    height: 60vw;
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box > * {
  position: absolute;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box > * {
    position: relative;
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box .media {
  left: 0;
  bottom: 0;
}
@media all and (min-width: 768px) and (max-width: 1160px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box .media {
    bottom: unset;
    top: 0;
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box .txt_box {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_pc01_pc.png") no-repeat 0 0/100% 100%;
  padding: 55px 55px 55px 80px;
  top: 0;
  right: 0;
}
@media all and (min-width: 768px) and (max-width: 1160px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box .txt_box {
    top: unset;
    bottom: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box .txt_box {
    padding: 5.5vw 5.5vw 5.5vw 8vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box .txt_box {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_pc01.png") no-repeat 0 0/100% 100%;
    width: 93.3333333333vw;
    right: -2vw;
    margin-top: -5.3333333333vw;
    padding: 10.6666666667vw 6.6666666667vw 6.6666666667vw;
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box .txt_box .btn_arrow {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box .txt_box .btn_arrow {
    position: static;
    display: flex;
    justify-content: flex-end;
    margin-top: 1.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper:not(.step1)::before {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco_arrow_pc.png") no-repeat 0 0/contain;
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box {
  position: relative;
  height: 424px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box {
    height: 59vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box {
    height: unset;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box.en, #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box.fr, #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box.es, #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box.de {
    height: 61vw;
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box > * {
  position: absolute;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box > * {
    position: relative;
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box .media {
  right: 0;
  bottom: 0;
}
@media all and (min-width: 768px) and (max-width: 1160px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box .media {
    bottom: unset;
    top: 0;
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box .txt_box {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_pc02_pc.png") no-repeat 0 0/100% 100%;
  padding: 55px 80px 55px 55px;
  top: 0;
  left: 0;
}
@media all and (min-width: 768px) and (max-width: 1160px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box .txt_box {
    top: unset;
    bottom: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box .txt_box {
    padding: 5.5vw 8vw 5.5vw 5.5vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box .txt_box {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_pc02.png") no-repeat 0 0/100% 100%;
    width: 93.3333333333vw;
    right: -2vw;
    margin-top: -5.3333333333vw;
    left: unset;
    padding: 10.6666666667vw 6.6666666667vw 6.6666666667vw;
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box .txt_box .btn_arrow {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box .txt_box .btn_arrow {
    position: static;
    display: flex;
    justify-content: flex-end;
    margin-top: 1.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet {
  background-image: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco01.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco02_tablet.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco03_tablet.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco04.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco05_tablet.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco06_tablet.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco02_tablet.png"), linear-gradient(#fcffef, #e5fffe, #e5e6ff);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat-y;
  background-position: calc(50% - 500px) 2.5%, calc(50% + 550px) 11%, calc(50% - 590px) 22%, calc(50% + 570px) 32%, calc(50% + 690px) 62%, calc(50% - 650px) 79%, calc(50% + 600px) 99%, 0 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet {
    background-position: -2% 3%, 110% 5%, -10% 18%, 106% 32%, 110% 62%, -2% 42%, -2% 80%, 0 0;
    background-size: 14.9vw 24.5vw, 23.1vw 21.9vw, 23.9vw 37.8vw, 18.6vw 18.5vw, 25.2vw 36.7vw, 20.5vw 25.7vw, 23.1vw 21.9vw, 100%;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet {
    background-position: 4% 2%, 110% 4.5%, -4% 25%, 108% 29%, 110% 65%, -2% 83%, 108% 99%, 0 0;
    background-size: 11.8666666667vw 19.6vw, 18.2666666667vw 17.3333333333vw, 19.0666666667vw 30.2666666667vw, 24.8vw 24.6666666667vw, 20.1333333333vw 29.3333333333vw, 16.4vw 20.5333333333vw, 18.2666666667vw 17.3333333333vw, 100%;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper .step_ttl .step::before {
  background: rgba(0, 196, 186, 0.15);
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 {
  max-width: 1000px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 {
    margin: 0 auto 25.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .media {
  margin: 0 auto;
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box {
  width: unset;
  margin-top: -50px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet01.png") no-repeat 0 0/100% 100%;
    margin-top: -6.6666666667vw;
    padding: 6.6666666667vw 6.6666666667vw 6.6666666667vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list {
    flex-direction: column;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li {
  padding: 80px 55px 105px;
  position: relative;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li {
    padding: 5.3333333333vw 0 0;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li .media {
  width: 70%;
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li .btn_arrow {
  position: absolute;
  right: 55px;
  bottom: 55px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li .btn_arrow {
    position: static;
    display: flex;
    justify-content: flex-end;
    margin-top: 1.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.simple {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet01_pc.png") no-repeat 0 0/100% 100%;
  width: 56%;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.simple {
    background: none;
    width: 100%;
    padding-bottom: 4vw;
    border-bottom: 2px dashed #ddd;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.simple .ttl {
  color: var(--color-simple);
  /* font-size: 30px; */
  font-size: 23px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.simple .ttl {
    font-size: 3vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.simple .ttl {
    font-size: 3.4666666667vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.simple .txt {
  /* font-size: 18px; */
  font-size: 16px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.simple .txt {
    font-size: 1.8vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.simple .txt {
    font-size: 3.2vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.studio {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet02_pc.png") no-repeat 0 0/100% 100%;
  width: 41%;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.studio {
    background: none;
    width: 100%;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.studio .ttl {
  color: var(--color-studio);
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.studio .txt {
  font-size: 14px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.studio .txt {
    font-size: 1.4vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.studio .txt {
    font-size: 3.2vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper:not(.step1)::before {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco_arrow_tablet.png") no-repeat 0 0/contain;
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box {
  position: relative;
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1 {
  height: 424px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1 {
    height: 61vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1 {
    height: unset;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1.fr, #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1.de {
    height: 63vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1.ko, #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1.zh, #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1.th {
    height: 58vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1 .media {
  right: 0;
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1 .txt_box {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet03_pc.png") no-repeat 0 0/100% 100%;
  padding: 55px 80px 55px 55px;
  left: 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1 .txt_box {
    padding: 5.5vw 8vw 5.5vw 5.5vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1 .txt_box {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet02.png") no-repeat 0 0/100% 100%;
    padding: 10.6666666667vw 6.6666666667vw 6.6666666667vw;
    left: unset;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1 .txt_box .btn_arrow {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1 .txt_box .btn_arrow {
    position: static;
    display: flex;
    justify-content: flex-end;
    margin-top: 1.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2 {
  height: 424px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2 {
    height: 62vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2 {
    height: unset;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2.en, #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2.fr, #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2.es, #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2.de {
    height: 65vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2.zh {
    height: 60vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2 .media {
  left: 0;
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2 .txt_box {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet04_pc.png") no-repeat 0 0/100% 100%;
  padding: 55px 55px 110px 80px;
  right: 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2 .txt_box {
    padding: 5.5vw 5.5vw 11vw 8vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2 .txt_box {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet03.png") no-repeat 0 0/100% 100%;
    padding: 10.6666666667vw 6.6666666667vw 6.6666666667vw;
    right: -2vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2 .txt_box .btn_arrow {
  position: absolute;
  right: 55px;
  bottom: 55px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2 .txt_box .btn_arrow {
    position: static;
    margin-top: 1.3333333333vw;
    display: flex;
    justify-content: flex-end;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box .media {
  position: absolute;
  bottom: 0;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box .media {
    position: relative;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box .txt_box {
  position: absolute;
  top: 0;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box .txt_box {
    position: relative;
    width: 93.3333333333vw;
    right: -2vw;
    margin-top: -5.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box {
  position: relative;
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1 {
  height: 424px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1 {
    height: 57vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1 {
    height: unset;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1.de {
    height: 59vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1.ko, #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1.zh {
    height: 54vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1 .media {
  right: 0;
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1 .txt_box {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet03_pc.png") no-repeat 0 0/100% 100%;
  padding: 55px 80px 55px 55px;
  left: 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1 .txt_box {
    padding: 5.5vw 8vw 5.5vw 5.5vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1 .txt_box {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet02.png") no-repeat 0 0/100% 100%;
    padding: 10.6666666667vw 6.6666666667vw 6.6666666667vw;
    left: unset;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 {
  height: 424px;
  width: 90%;
  margin: 30px auto 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 {
    width: unset;
    height: 51vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 {
    width: unset;
    height: unset;
    margin-top: 5.3333333333vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2.en, #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2.es {
    height: 53vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2.fr, #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2.de {
    height: 56vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 .media {
  width: 60%;
  left: 0;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 .media {
    width: 100%;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 .txt_box {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet04_pc.png") no-repeat 0 0/100% 100%;
  padding: 55px 55px 55px 80px;
  width: 45%;
  right: 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 .txt_box {
    padding: 5.5vw 5.5vw 5.5vw 8vw;
    width: 55vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 .txt_box {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet03.png") no-repeat 0 0/100% 100%;
    padding: 10.6666666667vw 6.6666666667vw 6.6666666667vw;
    width: 93.3333333333vw;
    right: -2vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 .txt_box .btn_arrow > a span, #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 .txt_box .btn_arrow > span span {
  font-size: 14px;
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 .txt_box .btn_arrow > a span, #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 .txt_box .btn_arrow > span span {
    font-size: 1.6vw;
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 .txt_box .btn_arrow > a span, #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 .txt_box .btn_arrow > span span {
    font-size: 3.2vw;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box .media {
  position: absolute;
  bottom: 0;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box .media {
    position: relative;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box .txt_box {
  position: absolute;
  top: 0;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box .txt_box {
    position: relative;
    width: 93.3333333333vw;
    right: -2vw;
    margin-top: -5.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile {
  background-image: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco01.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco02_mobile.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco03_mobile.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco04.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco05_mobile.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco06_mobile.png"), linear-gradient(#f1ffef, #e5fffa);
  background-position: calc(50% - 500px) 4%, calc(50% + 500px) 10%, calc(50% - 500px) 42%, calc(50% + 570px) 51%, calc(50% + 690px) 90%, calc(50% - 650px) 97%, 0 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile {
    background-position: -2% 8%, 110% 27%, -4% 39%, 106% 48%, 110% 90%, -2% 99%, 0 0;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile {
    background-position: 4% 3%, 110% 3%, -4% 39%, 108% 45%, 110% 75%, -2% 99%, 0 0;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper .step_ttl .step::before {
  background: rgba(0, 219, 157, 0.15);
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 {
  /* @media all and (max-width: 767px) {
      margin: 0 auto calc(190 * 100 / 750 * 1vw);
  }
  .step_box {
      position: relative;
      height: 424px;
      @media all and (min-width: 768px) and (max-width: 1000px) {
          height: calc(680 * 100 / 1000 * 1vw);
      }
      @media all and (max-width: 767px) {
          height: unset;
      }
      &.fr, &.es, &.de {
          @media all and (min-width: 768px) and (max-width: 1000px) {
              height: calc(720 * 100 / 1000 * 1vw);
          }
      }
      &.ko {
          @media all and (min-width: 768px) and (max-width: 1000px) {
              height: calc(650 * 100 / 1000 * 1vw);
          }
      }
      &.zh {
          @media all and (min-width: 768px) and (max-width: 1000px) {
              height: calc(630 * 100 / 1000 * 1vw);
          }
      }
      &.zh {
          @media all and (min-width: 768px) and (max-width: 1000px) {
              height: calc(650 * 100 / 1000 * 1vw);
          }
      }
      & > * {
          position: absolute;
          @media all and (max-width: 767px) {
              position: relative;
          }
      }
      .media {
          left: 0;
          bottom: 0;
          @media all and (min-width: 768px) and (max-width: 1160px) {
              bottom: unset;
              top: 0;
          }
      }
      .txt_box {
          background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_mobile01_pc.png") no-repeat 0 0 / 100% 100%;
          padding: 55px 55px 55px 80px;
          top: 0;
          right: 0;
          @media all and (min-width: 768px) and (max-width: 1160px) {
              top: unset;
              bottom: 0;
          }
          @media all and (min-width: 768px) and (max-width: 1000px) {
              padding: calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(80 * 100 / 1000 * 1vw);
          }
          @media all and (max-width: 767px) {
              background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_mobile01.png") no-repeat 0 0 / 100% 100%;
              width: calc(700 * 100 / 750 * 1vw);
              right: calc(-15 * 100 / 750 * 1vw);
              margin-top: calc(-40 * 100 / 750 * 1vw);
              padding: calc(80 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
          }
          .btn_arrow {
              display: flex;
              justify-content: flex-end;
              margin-top: 10px;
              @media all and (max-width: 767px) {
                  position: static;
                  display: flex;
                  justify-content: flex-end;
                  margin-top: calc(10 * 100 / 750 * 1vw);
              }
          }
      }
  } */
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box {
  position: relative;
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 {
  height: 424px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 {
    height: 62vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 {
    height: unset;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1.fr, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1.es {
    height: 64vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1.de {
    height: 67vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1.zh {
    height: 59vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 .media {
  right: 0;
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 .txt_box {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet03_pc.png") no-repeat 0 0/100% 100%;
  padding: 55px 80px 55px 55px;
  left: 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 .txt_box {
    padding: 5.5vw 8vw 5.5vw 5.5vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 .txt_box {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet02.png") no-repeat 0 0/100% 100%;
    padding: 10.6666666667vw 6.6666666667vw 6.6666666667vw;
    left: unset;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 .txt_box .ttl {
  font-size: 23px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 .txt_box .ttl {
    font-size: 3vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 .txt_box .ttl {
    font-size: 3.4666666667vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 .txt_box .btn_arrow {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 .txt_box .btn_arrow {
    position: static;
    display: flex;
    justify-content: flex-end;
    margin-top: 1.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 {
  height: 374px;
  width: 90%;
  margin: 30px auto 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 {
    height: 54vw;
    width: unset;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 {
    height: unset;
    width: unset;
    margin-top: 5.3333333333vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2.fr, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2.de {
    height: 56vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2.es {
    height: 57vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2.ko, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2.zh {
    height: 52vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .media {
  width: 60%;
  left: 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .media {
    width: 55vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .media {
    width: 100%;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet04_pc.png") no-repeat 0 0/100% 100%;
  padding: 55px 55px 55px 80px;
  width: 45%;
  right: 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box {
    padding: 5.5vw 5.5vw 5.5vw 8vw;
    width: 55vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet03.png") no-repeat 0 0/100% 100%;
    padding: 10.6666666667vw 6.6666666667vw 6.6666666667vw;
    width: 93.3333333333vw;
    right: -2vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box .txt {
  font-size: 14px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box .txt {
    font-size: 1.4vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box .txt {
    font-size: 3.2vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box .btn_arrow {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box .btn_arrow {
    position: static;
    display: flex;
    justify-content: flex-end;
    margin-top: 1.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box .btn_arrow > a span, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box .btn_arrow > span span {
  font-size: 14px;
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box .btn_arrow > a span, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box .btn_arrow > span span {
    font-size: 1.6vw;
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box .btn_arrow > a span, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box .btn_arrow > span span {
    font-size: 3.2vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box .media {
  position: absolute;
  bottom: 0;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box .media {
    position: relative;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box .txt_box {
  position: absolute;
  top: 0;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box .txt_box {
    position: relative;
    width: 93.3333333333vw;
    right: -2vw;
    margin-top: -5.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper:not(.step1)::before {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_deco_arrow_mobile.png") no-repeat 0 0/contain;
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box {
  position: relative;
  height: 424px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box {
    height: 57vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box {
    height: unset;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box.fr, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box.es, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box.de {
    height: 59vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box.zh {
    height: 54vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box > * {
  position: absolute;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box > * {
    position: relative;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box .media {
  right: 0;
  bottom: 0;
}
@media all and (min-width: 768px) and (max-width: 1160px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box .media {
    bottom: unset;
    top: 0;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box .txt_box {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_mobile02_pc.png") no-repeat 0 0/100% 100%;
  padding: 55px 80px 55px 55px;
  top: 0;
  left: 0;
}
@media all and (min-width: 768px) and (max-width: 1160px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box .txt_box {
    top: unset;
    bottom: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box .txt_box {
    padding: 5.5vw 8vw 5.5vw 5vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box .txt_box {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_mobile02.png") no-repeat 0 0/100% 100%;
    width: 93.3333333333vw;
    right: -2vw;
    left: unset;
    margin-top: -5.3333333333vw;
    padding: 10.6666666667vw 6.6666666667vw 6.6666666667vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box .txt_box .btn_arrow {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box .txt_box .btn_arrow {
    position: static;
    display: flex;
    justify-content: flex-end;
    margin-top: 1.3333333333vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box {
  position: relative;
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1 {
  height: 424px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1 {
    height: 57vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1 {
    height: unset;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1.es, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1.de {
    height: 59vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1.zh {
    height: 55vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1 .media {
  right: 0;
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1 .txt_box {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet03_pc.png") no-repeat 0 0/100% 100%;
  padding: 55px 80px 55px 55px;
  left: 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1 .txt_box {
    padding: 5.5vw 8vw 5.5vw 5.5vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1 .txt_box {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet02.png") no-repeat 0 0/100% 100%;
    padding: 10.6666666667vw 6.6666666667vw 6.6666666667vw;
    left: unset;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 {
  height: 424px;
  width: 90%;
  margin: 30px auto 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 {
    width: unset;
    height: 51vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 {
    width: unset;
    height: unset;
    margin-top: 5.3333333333vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2.en, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2.es {
    height: 53vw;
  }
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2.fr, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2.de {
    height: 56vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 .media {
  width: 60%;
  left: 0;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 .media {
    width: 100%;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 .txt_box {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet04_pc.png") no-repeat 0 0/100% 100%;
  padding: 55px 55px 55px 80px;
  width: 45%;
  right: 0;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 .txt_box {
    padding: 5.5vw 5.5vw 5.5vw 8vw;
    width: 55vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 .txt_box {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/introduction_bg_tablet03.png") no-repeat 0 0/100% 100%;
    padding: 10.6666666667vw 6.6666666667vw 6.6666666667vw;
    width: 93.3333333333vw;
    right: -2vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 .txt_box .btn_arrow > a span, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 .txt_box .btn_arrow > span span {
  font-size: 14px;
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 .txt_box .btn_arrow > a span, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 .txt_box .btn_arrow > span span {
    font-size: 1.6vw;
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 .txt_box .btn_arrow > a span, #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 .txt_box .btn_arrow > span span {
    font-size: 3.2vw;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box .media {
  position: absolute;
  bottom: 0;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box .media {
    position: relative;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box .txt_box {
  position: absolute;
  top: 0;
}
@media all and (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box .txt_box {
    position: relative;
    width: 93.3333333333vw;
    right: -2vw;
    margin-top: -5.3333333333vw;
  }
}
#official_top .tips_area {
  background-image: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/tips_deco01_tablet.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/tips_deco01_tablet.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/bg_grid.png");
  background-repeat: repeat-y, repeat-y, repeat;
  background-position: calc(50% - 500px) 850px, calc(50% + 550px) 140px, 50% 0;
  /* padding-top: 80px;
  padding-bottom: 130px; */
  padding-top: 60px;
  padding-bottom: 98px;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .tips_area {
    background-position: -20% 85vw, 120% 14vw, 50% 0;
    background-size: 27.2vw 141.6vw, 27.2vw 141.6vw, 4vw 4vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .tips_area {
    background-position: -6.6666666667vw 90.6666666667vw, calc(6.6666666667vw + 100%) 18.6666666667vw, 50% 0;
    background-size: 22.9333333333vw 119.3333333333vw, 22.9333333333vw 119.3333333333vw, 5.3333333333vw 5.3333333333vw;
    padding-top: 10.6666666667vw;
    padding-bottom: 13.3333333333vw;
  }
}
#official_top .tips_area #page_in_link2 {
  padding-top: 70px;
  margin-top: -70px;
  position: relative;
  top: -60px;
  pointer-events: none;
}
@media all and (max-width: 767px) {
  #official_top .tips_area #page_in_link2 {
    padding-top: unset;
    margin-top: unset;
    top: -10.6666666667vw;
  }
}
#official_top .tips_area .area_ttl {
  color: var(--color-main);
  /* font-size: 40px; */
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  /* margin-bottom: 70px; */
  margin-bottom: 53px;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .area_ttl {
    font-size: 4.8vw;
    margin-bottom: 6.6666666667vw;
  }
}
#official_top .tips_area .area_ttl span {
  display: inline-block;
  position: relative;
}
#official_top .tips_area .area_ttl span::before {
  content: "";
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/tips_deco_light.png") no-repeat 0 0/contain;
  display: block;
  /* width: 68px;
  height: 73px; */
  width: 51px;
  height: 55px;
  position: absolute;
  top: 0;
  left: -55px;
  bottom: 0;
  margin: auto;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .area_ttl span::before {
    width: 8vw;
    height: 8.5333333333vw;
    left: -8.5333333333vw;
  }
}
#official_top .tips_area .tips_cat_list {
  /* margin-bottom: 30px; */
  margin: -70px 0 30px;
  padding-top: 70px;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .tips_cat_list {
    /* margin-bottom: calc(30 * 100 / 750 * 1vw); */
    margin: unset 0 4vw;
  }
}
#official_top .tips_area .tips_cat_list .bg {
  /* padding: 25px 30px 30px; */
  padding: 25px 30px 30px;
  border-radius: 10px;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .tips_cat_list .bg {
    padding: 4vw 2.6666666667vw 5.3333333333vw;
  }
}
#official_top .tips_area .tips_cat_list .ttl {
  color: var(--color-white);
  /* font-size: 30px; */
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  /* margin-bottom: 25px; */
  margin-bottom: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#official_top .tips_area .tips_cat_list .ttl::before {
  content: "";
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/tips_deco_glass.png") no-repeat 0 0/contain;
  display: block;
  /* width: 33px;
  height: 33px;
  margin-right: 10px; */
  width: 25px;
  height: 25px;
  margin-right: 8px;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .tips_cat_list .ttl {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
  #official_top .tips_area .tips_cat_list .ttl::before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    margin-right: 1.3333333333vw;
  }
}
#official_top .tips_area .tips_cat_list .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .tips_cat_list .list {
    justify-content: space-between;
    gap: 10px;
  }
}
#official_top .tips_area .tips_cat_list .list li {
  width: calc(33.3333333333% - 14px);
  aspect-ratio: 5/1.7;
  border-radius: 5px;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .tips_cat_list .list li {
    width: calc(50% - 5px);
    aspect-ratio: 5/2;
  }
}
#official_top .tips_area .tips_cat_list .list li a {
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
#official_top .tips_area .tips_cat_list .list li a:hover {
  opacity: 1;
}
#official_top .tips_area .tips_cat_list .list li a:hover::before {
  background: rgba(255, 255, 255, 0.7);
}
#official_top .tips_area .tips_cat_list .list li a:hover::after {
  bottom: 10px;
}
#official_top .tips_area .tips_cat_list .list li a::before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  transition: 0.2s;
}
#official_top .tips_area .tips_cat_list .list li a::after {
  content: "";
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/tips_cat_list_arrow.png") no-repeat 0 0/contain;
  display: block;
  /* width: 28px;
  height: 28px; */
  width: 21px;
  height: 21px;
  position: absolute;
  /* bottom: 13px; */
  bottom: 16px;
  z-index: 2;
  transition: 0.2s;
}
@media all and (min-width: 768px) and (max-width: 1140px) {
  #official_top .tips_area .tips_cat_list .list li a::after {
    width: 2.4vw;
    height: 2.4vw;
    bottom: 1.3vw;
  }
  #official_top .tips_area .tips_cat_list .list li a:hover::after {
    bottom: 1.0666666667vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .tips_area .tips_cat_list .list li a::after {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    bottom: 1.7333333333vw;
  }
  #official_top .tips_area .tips_cat_list .list li a:hover::after {
    bottom: 1.0666666667vw;
  }
}
#official_top .tips_area .tips_cat_list .list li a span {
  color: #1b6e96;
  /* font-size: 24px; */
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  text-shadow: 2px 2px 0 var(--color-white), -2px -2px 0 var(--color-white), -2px 2px 0 var(--color-white), 2px -2px 0 var(--color-white), 0px 2px 0 var(--color-white), -2px 0 var(--color-white), -2px 0 0 var(--color-white), 2px 0 0 var(--color-white);
  position: relative;
  /* top: -10px; */
  top: -7px;
  z-index: 2;
}
@media all and (min-width: 768px) and (max-width: 1140px) {
  #official_top .tips_area .tips_cat_list .list li a span {
    font-size: 1.8vw;
    top: -1vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .tips_area .tips_cat_list .list li a span {
    font-size: 3.4666666667vw;
    top: -1.3333333333vw;
  }
}
#official_top .tips_area.pc .tips_cat_list .bg {
  background: var(--color-pc);
}
#official_top .tips_area.tablet .tips_cat_list .bg {
  background: var(--color-tablet);
}
#official_top .tips_area.mobile .tips_cat_list .bg {
  background: var(--color-mobile);
}
#official_top .tips_area .tips_cat_box {
  /* padding: 40px 0 30px; */
  padding: 70px 0 30px;
  margin-top: -30px;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .tips_cat_box {
    padding: 5.3333333333vw 0 4vw;
    margin-top: unset;
  }
}
#official_top .tips_area .tips_cat_box .cat_ttl {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .tips_cat_box .cat_ttl {
    margin-bottom: 3.3333333333vw;
  }
}
#official_top .tips_area .tips_cat_box .cat_ttl .bg {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/tips_bg_cat_ttl_pc.png") no-repeat 50% 50%/100% 100%;
  color: var(--color-main);
  text-align: center;
  min-width: 455px;
  /* min-height: 65px; */
  min-height: 49px;
  padding: 20px;
  display: inline-block;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .tips_cat_box .cat_ttl .bg {
    background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/tips_bg_cat_ttl.png") no-repeat 50% 50%/100% 100%;
    min-width: 60.8vw;
    min-height: 10.4vw;
    padding: 2.6666666667vw;
  }
}
#official_top .tips_area .tips_cat_box .cat_ttl .bg span {
  /* font-size: 26px; */
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  /* margin-top: -7px; */
  margin-top: -5px;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .tips_cat_box .cat_ttl .bg span {
    font-size: 4vw;
    margin-top: -1.2vw;
  }
}
#official_top .tips_area .tips_ttl_solid {
  background: var(--color-main);
  margin-top: 40px;
  padding: 10px 30px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 10px 0 0;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .tips_ttl_solid {
    margin-top: 5.3333333333vw;
    padding: 2.2666666667vw 4vw 2.6666666667vw;
  }
}
#official_top .tips_area .tips_ttl_solid span {
  color: var(--color-white);
  /* font-size: 30px; */
  font-size: 23px;
  font-weight: 700;
  position: relative;
}
#official_top .tips_area .tips_ttl_solid span::before, #official_top .tips_area .tips_ttl_solid span::after {
  content: "";
  background: var(--color-white);
  display: block;
  width: 2px;
  /* height: 40px; */
  height: 30px;
  box-shadow: 2px 0 0 var(--color-main);
  transform: rotate(30deg);
  position: absolute;
}
#official_top .tips_area .tips_ttl_solid span::before {
  top: -25px;
  left: -20px;
}
#official_top .tips_area .tips_ttl_solid span::after {
  right: -20px;
  bottom: -25px;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .tips_ttl_solid span {
    font-size: 4.2666666667vw;
  }
  #official_top .tips_area .tips_ttl_solid span::before, #official_top .tips_area .tips_ttl_solid span::after {
    height: 5.3333333333vw;
  }
  #official_top .tips_area .tips_ttl_solid span::before {
    top: -4vw;
    left: -2.6666666667vw;
  }
  #official_top .tips_area .tips_ttl_solid span::after {
    right: -2.6666666667vw;
    bottom: -4vw;
  }
}
#official_top .tips_area .slider_wrapper {
  /* max-width: 940px; */
  margin: 0 auto;
  /* padding-bottom: 40px; */
  padding: 0 20px 40px;
  position: relative;
  transition: 0.2s;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .slider_wrapper {
    /* padding-bottom: 8vw; */
    padding: 0 0 8vw 10px;
  }
}
@media all and (max-width: 767px) {
  #official_top .tips_area .swiper {
    width: calc(100% + 20px);
    transform: translateX(-10px);
  }
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide {
  height: auto;
  width: 32%; /* 初期化までの崩れ防止 */
}
@media all and (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide {
    width: 40%; /* 初期化までの崩れ防止 */
  }
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .slide_inner {
  background: var(--color-white);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  box-shadow: 2px 2px 0 var(--color-main);
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .slide_inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .slide_inner > * {
  user-select: none;
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .thumb.video::before {
  content: "";
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/icon_play.png") no-repeat 0 0/contain;
  display: block;
  width: 70px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  z-index: 1;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .thumb.video::before {
    width: 9.3333333333vw;
    height: 6.6666666667vw;
  }
}
@media all and (min-width: 768px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .thumb.short_video img {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .thumb a {
  display: block;
  width: 100%;
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .thumb .note {
  background: rgba(90, 156, 227, 0.7);
  color: var(--color-white);
  /* font-size: 18px; */
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 6px 10px 8px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .thumb .note {
    font-size: 2.9333333333vw;
    padding: 0.8vw 1.3333333333vw 1.0666666667vw;
  }
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .thumb .time {
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  /* font-size: 16px; */
  font-size: 12px;
  font-weight: bold;
  padding: 0 8px 2px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .thumb .time {
    font-size: 2.6666666667vw;
    padding: 0 1.0666666667vw 0.2666666667vw;
  }
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide.more a {
  background: #deebf9;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide.more a:hover {
  background: var(--color-main);
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide.more a:hover .btn_arrow {
  pointer-events: none;
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide.more a:hover .btn_arrow span {
  color: var(--color-white);
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide.more a .btn_arrow span {
  color: var(--color-main);
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box {
  /* padding: 15px 15px 20px; */
  padding: 15px 15px 50px;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box {
    /* padding: 15px 10px 20px; */
    padding: 15px 10px 40px;
  }
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .ttl {
  /* font-size: 20px; */
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  cursor: default;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .ttl {
    font-size: 3.2vw;
  }
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .txt, #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .author {
  /* font-size: 14px; */
  font-size: 13px;
  cursor: default;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .txt, #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .author {
    font-size: 2.9333333333vw;
  }
}
div#input_wrapper.ja #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .txt, div#input_wrapper.ko #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .txt, div#input_wrapper.zh #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .txt, div#input_wrapper.ja #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .author, div#input_wrapper.ko #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .author, div#input_wrapper.zh #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .author {
  line-height: 1.5;
}
div#input_wrapper.en #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .txt, div#input_wrapper.fr #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .txt, div#input_wrapper.es #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .txt, div#input_wrapper.de #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .txt, div#input_wrapper.en #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .author, div#input_wrapper.fr #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .author, div#input_wrapper.es #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .author, div#input_wrapper.de #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .author {
  line-height: 1.4;
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .txt {
  margin-top: 10px;
  margin-bottom: 10px;
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .link {
  position: absolute;
  right: 15px;
  bottom: 20px;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .link {
    right: 10px;
  }
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .link a {
  color: var(--color-simple);
  /* font-size: 18px; */
  font-size: 15px;
  font-weight: 500;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .link a {
    font-size: 2.9333333333vw;
  }
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide.studio .slide_inner {
  background: #deebf9;
}
#official_top .tips_area .swiper .swiper-wrapper .swiper-slide.studio .txt_box .link a {
  color: var(--color-studio);
}
#official_top .tips_area .swiper.row_double {
  height: 650px;
}
#official_top .tips_area .swiper.row_double.ja, #official_top .tips_area .swiper.row_double.ko, #official_top .tips_area .swiper.row_double.zw {
  height: 560px;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .swiper.row_double {
    height: 99vw;
  }
  #official_top .tips_area .swiper.row_double.ja, #official_top .tips_area .swiper.row_double.ko, #official_top .tips_area .swiper.row_double.zw {
    height: 76vw;
  }
}
#official_top .tips_area .swiper.row_double .swiper-slide a {
  display: block;
  height: 100%;
}
#official_top .tips_area .swiper.row_double .swiper-slide a .txt_box {
  pointer-events: none;
}
#official_top .tips_area .slider_btns {
  background: var(--color-main);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  transition: 0.2s;
}
#official_top .tips_area .slider_btns::after {
  content: "";
  display: block;
  width: 15px;
  height: 25px;
  position: absolute;
}
@media all and (min-width: 768px) and (max-width: 1180px) {
  #official_top .tips_area .slider_btns {
    width: 40px;
    height: 40px;
  }
}
#official_top .tips_area .slider_btns.swiper-button-prev {
  left: -45px;
}
#official_top .tips_area .slider_btns.swiper-button-prev::after {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/arrow_slider.png") no-repeat 0 0/contain;
  transform: rotate(180deg) translateX(2px);
}
@media all and (min-width: 768px) and (max-width: 1180px) {
  #official_top .tips_area .slider_btns.swiper-button-prev {
    left: -25px;
  }
}
#official_top .tips_area .slider_btns.swiper-button-next {
  right: -45px;
}
#official_top .tips_area .slider_btns.swiper-button-next::after {
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/arrow_slider.png") no-repeat 0 0/contain;
  transform: translateX(2px);
}
@media all and (min-width: 768px) and (max-width: 1180px) {
  #official_top .tips_area .slider_btns.swiper-button-next {
    right: -25px;
  }
}
#official_top .tips_area .slider_btns.swiper-button-disabled {
  opacity: 0;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .slider_btns {
    display: none;
  }
}
#official_top .tips_area .slider_back_btn {
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 11;
}
@media all and (max-width: 767px) {
  #official_top .tips_area .slider_back_btn {
    right: 0;
  }
}
#official_top .tips_area .slider_back_btn a {
  background: #ccc;
  width: 60px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
}
#official_top .tips_area .slider_back_btn a::before {
  content: "";
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/arrow_slider.png") no-repeat 0 0/contain;
  display: block;
  width: 15px;
  height: 25px;
  transform: rotate(-90deg);
}
@media all and (max-width: 767px) {
  #official_top .tips_area .slider_back_btn a {
    width: 12vw;
    height: 6vw;
  }
  #official_top .tips_area .slider_back_btn a::before {
    width: 3.4vw;
    height: 5.9vw;
  }
}
#official_top .function_section {
  background-image: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/bg_stripe.png");
  background-repeat: repeat;
  background-position: 50% 0;
  margin: 60px -50vw 100px;
  padding: 100px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
  #official_top .function_section {
    background-size: 5vw;
    margin: 6vw -50vw 10vw;
    padding: 10vw 0;
  }
}
@media all and (max-width: 767px) {
  #official_top .function_section {
    background-size: 6.6666666667vw;
    margin: 8vw -50vw 13.3333333333vw;
    padding: 10.6666666667vw 0 13.3333333333vw;
  }
}
#official_top .function_section #page_in_link3 {
  padding-top: 70px;
  margin-top: -70px;
  position: relative;
  top: -60px;
  pointer-events: none;
}
@media all and (max-width: 767px) {
  #official_top .function_section #page_in_link3 {
    padding-top: unset;
    margin-top: unset;
    top: -10.6666666667vw;
  }
}
#official_top .function_section .section_ttl {
  text-align: center;
  /* margin-bottom: 53px; */
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}
@media all and (max-width: 767px) {
  #official_top .function_section .section_ttl {
    /* margin-bottom: calc(50 * 100 / 750 * 1vw); */
    margin-bottom: 3.3333333333vw;
  }
}
#official_top .function_section .section_ttl .bg {
  background-image: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/function_bg_area_ttl01.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-width: 595px;
  /* aspect-ratio: 595 / 87; */
  min-height: 87px;
  padding: 15px 40px 15px 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#official_top .function_section .section_ttl .bg::before {
  content: "";
  background-image: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/function_bg_area_ttl02.png");
  display: block;
  width: 70px;
  aspect-ratio: 1;
  position: absolute;
  top: -34px;
  left: -34px;
}
@media all and (max-width: 767px) {
  #official_top .function_section .section_ttl .bg {
    min-width: unset;
    padding: 3.3333333333vw 3.3333333333vw 2.6666666667vw 2vw;
    min-height: unset;
    width: 90%;
  }
  #official_top .function_section .section_ttl .bg::before {
    background-size: contain;
    width: 9.3333333333vw;
    top: -4.5333333333vw;
    left: -4.5333333333vw;
  }
}
#official_top .function_section .section_ttl span {
  color: var(--color-main);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  /* right: 14px; */
  bottom: 6px;
}
@media all and (max-width: 767px) {
  #official_top .function_section .section_ttl span {
    font-size: 4vw;
    /* right: calc(14 * 100 / 750 * 1vw); */
    bottom: 0.8vw;
  }
}
#official_top .function_section > .lead {
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
}
@media all and (max-width: 767px) {
  #official_top .function_section > .lead {
    font-size: 2.6666666667vw;
    margin-bottom: 4vw;
  }
}
#official_top .function_section .function_box:not(:last-of-type) {
  margin-bottom: 60px;
}
@media all and (max-width: 767px) {
  #official_top .function_section .function_box:not(:last-of-type) {
    margin-bottom: 8vw;
  }
}
#official_top .function_section .function_box .cat_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
}
#official_top .function_section .function_box .cat_ttl .bg {
  background: var(--color-white);
  color: var(--color-main);
  min-width: 400px;
  aspect-ratio: 400/54;
  padding: 0.5em 2em 0.5em 1.5em;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#official_top .function_section .function_box .cat_ttl .bg::before {
  content: "";
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/function_bg_cat_ttl_pc.png") 50% 0;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 2;
}
#official_top .function_section .function_box .cat_ttl .bg::after {
  content: "";
  display: inline-block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 12px;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
}
@media all and (max-width: 767px) {
  #official_top .function_section .function_box .cat_ttl .bg {
    min-width: 66.6666666667vw;
  }
  #official_top .function_section .function_box .cat_ttl .bg::after {
    border-radius: 6px;
    top: 0.6666666667vw;
    left: 0.6666666667vw;
  }
}
#official_top .function_section .function_box .cat_ttl span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  display: block;
  position: relative;
  bottom: 0.1em;
  z-index: 3;
}
@media all and (max-width: 767px) {
  #official_top .function_section .function_box .cat_ttl span {
    font-size: 4vw;
  }
}
#official_top .function_section .function_box .function_list {
  background: var(--color-white);
  margin-top: -30px;
  padding: 60px 30px 50px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media all and (max-width: 767px) {
  #official_top .function_section .function_box .function_list {
    margin-top: -4vw;
    padding: 8vw 4vw 6.6666666667vw;
    border-radius: 4vw;
  }
}
#official_top .function_section .function_box .function_list > li {
  width: 32%;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 5px 0 rgba(44, 129, 170, 0.3);
}
#official_top .function_section .function_box .function_list > li:nth-of-type(-n+3) {
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  #official_top .function_section .function_box .function_list > li:nth-of-type(-n+3) {
    margin-bottom: unset;
  }
}
@media all and (max-width: 767px) {
  #official_top .function_section .function_box .function_list > li {
    width: 48%;
    box-shadow: 3px 3px 0 rgba(44, 129, 170, 0.3);
  }
  #official_top .function_section .function_box .function_list > li:not(:nth-last-of-type(-n+2)) {
    margin-bottom: 4vw;
  }
}
#official_top .function_section .function_box .function_list > li .ttl a {
  background: #f4fbff;
  color: var(--color-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  min-height: 60px;
  padding: 10px 50px 15px 10px;
  display: flex;
  align-items: center;
  position: relative;
}
#official_top .function_section .function_box .function_list > li .ttl a::after {
  content: "";
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/tips_cat_list_arrow.png") no-repeat 0 0/contain;
  display: block;
  width: 21px;
  height: 21px;
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  transition: 0.2s;
}
#official_top .function_section .function_box .function_list > li .ttl a:hover {
  opacity: unset;
}
#official_top .function_section .function_box .function_list > li .ttl a:hover::after {
  right: 10px;
}
@media all and (min-width: 768px) and (max-width: 1140px) {
  #official_top .function_section .function_box .function_list > li .ttl a {
    font-size: 1.4vw;
    min-height: 6vw;
    padding: 1vw 5vw 1.5vw 1vw;
  }
  #official_top .function_section .function_box .function_list > li .ttl a::after {
    width: 2.4vw;
    height: 2.4vw;
  }
  #official_top .function_section .function_box .function_list > li .ttl a:hover::after {
    right: 1.3333333333vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .function_section .function_box .function_list > li .ttl a {
    font-size: 2.9333333333vw;
    min-height: 13.3333333333vw;
    padding: 2vw 8vw 2.6666666667vw 2vw;
  }
  #official_top .function_section .function_box .function_list > li .ttl a::after {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
  #official_top .function_section .function_box .function_list > li .ttl a:hover::after {
    right: 1.3333333333vw;
  }
}
#official_top .function_section .function_box .function_list > li .function_tag_list {
  padding: 10px 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}
#official_top .function_section .function_box .function_list > li .function_tag_list::before {
  content: "";
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  display: block;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
#official_top .function_section .function_box .function_list > li .function_tag_list::after {
  content: "";
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.6) 100%);
  display: block;
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media all and (max-width: 767px) {
  #official_top .function_section .function_box .function_list > li .function_tag_list {
    padding: 2.6666666667vw;
  }
  #official_top .function_section .function_box .function_list > li .function_tag_list::before {
    width: 80%;
  }
  #official_top .function_section .function_box .function_list > li .function_tag_list::after {
    width: 80%;
  }
}
#official_top .function_section .function_box .function_list > li .function_tag_list li {
  flex-grow: 1;
  display: inline-block;
  z-index: 3;
}
#official_top .function_section .function_box .function_list > li .function_tag_list li:not(:last-of-type) {
  margin-bottom: 8px;
}
@media all and (max-width: 767px) {
  #official_top .function_section .function_box .function_list > li .function_tag_list li:not(:last-of-type) {
    margin-bottom: 2vw;
  }
}
#official_top .function_section .function_box .function_list > li .function_tag_list li a {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  min-width: 140px;
  height: 100%;
  padding: 0.2em 1.3em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  filter: drop-shadow(0 0 5px #fff);
}
@media all and (min-width: 768px) and (max-width: 1140px) {
  #official_top .function_section .function_box .function_list > li .function_tag_list li a {
    font-size: 1.5vw;
    min-width: 14vw;
  }
}
@media all and (max-width: 767px) {
  #official_top .function_section .function_box .function_list > li .function_tag_list li a {
    font-size: 2.9333333333vw;
    text-align: left;
    min-width: unset;
    padding: 0.2em 0.7em;
  }
}
#official_top .function_section .function_box.box1 .cat_ttl .bg::after {
  background: #b2f9f5;
}
#official_top .function_section .function_box.box1 .function_list > li:nth-of-type(1) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box1_bg01.jpg");
}
#official_top .function_section .function_box.box1 .function_list > li:nth-of-type(2) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box1_bg02.jpg");
}
#official_top .function_section .function_box.box1 .function_list > li:nth-of-type(3) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box1_bg03.jpg");
}
#official_top .function_section .function_box.box1 .function_list > li:nth-of-type(4) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box1_bg04.jpg");
}
#official_top .function_section .function_box.box1 .function_list > li:nth-of-type(5) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box1_bg05.jpg");
}
#official_top .function_section .function_box.box1 .function_list > li:nth-of-type(6) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box1_bg06.jpg");
}
#official_top .function_section .function_box.box1 .function_tag_list li a {
  background: #00b8af;
}
#official_top .function_section .function_box.box2 .cat_ttl .bg::after {
  background: #e1e6ff;
}
#official_top .function_section .function_box.box2 .function_list > li:nth-of-type(1) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box2_bg01.jpg");
}
#official_top .function_section .function_box.box2 .function_list > li:nth-of-type(2) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box2_bg02.jpg");
}
#official_top .function_section .function_box.box2 .function_list > li:nth-of-type(3) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box2_bg03.jpg");
}
#official_top .function_section .function_box.box2 .function_list > li:nth-of-type(4) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box2_bg04.jpg");
}
#official_top .function_section .function_box.box2 .function_list > li:nth-of-type(5) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box2_bg05.jpg");
}
#official_top .function_section .function_box.box2 .function_list > li:nth-of-type(6) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box2_bg06.jpg");
}
#official_top .function_section .function_box.box2 .function_tag_list li a {
  background: #519ef4;
}
#official_top .function_section .function_box.box3 .cat_ttl .bg::after {
  background: #edd3ff;
}
#official_top .function_section .function_box.box3 .function_list > li:nth-of-type(1) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box3_bg01.jpg");
}
#official_top .function_section .function_box.box3 .function_list > li:nth-of-type(2) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box3_bg02.jpg");
}
#official_top .function_section .function_box.box3 .function_list > li:nth-of-type(3) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box3_bg03.jpg");
}
#official_top .function_section .function_box.box3 .function_list > li:nth-of-type(4) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box3_bg04.jpg");
}
#official_top .function_section .function_box.box3 .function_list > li:nth-of-type(5) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box3_bg05.jpg");
}
#official_top .function_section .function_box.box3 .function_list > li:nth-of-type(6) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box3_bg06.jpg");
}
#official_top .function_section .function_box.box3 .function_tag_list li a {
  background: #b36ae6;
}
#official_top .function_section .function_box.box4 .cat_ttl .bg::after {
  background: #ffdac1;
}
#official_top .function_section .function_box.box4 .function_list > li:nth-of-type(1) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box4_bg01.jpg");
}
#official_top .function_section .function_box.box4 .function_list > li:nth-of-type(2) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box4_bg02.jpg");
}
#official_top .function_section .function_box.box4 .function_list > li:nth-of-type(3) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box4_bg03.jpg");
}
#official_top .function_section .function_box.box4 .function_list > li:nth-of-type(4) .function_tag_list::before {
  background-image: url("https://celcliptipsprod.s3-ap-northeast-1.amazonaws.com/official/function_box4_bg04.jpg");
}
#official_top .function_section .function_box.box4 .function_tag_list li a {
  background: #f27e30;
}
#official_top .bnr_area {
  background: var(--color-main);
  padding: 100px 0;
}
@media all and (max-width: 767px) {
  #official_top .bnr_area {
    padding: 13.3333333333vw 0;
  }
}
@media all and (max-width: 767px) {
  #official_top .bnr_area .inner {
    width: 85%;
    padding: unset;
  }
}
#official_top .bnr_area .user_guide_bnr {
  margin-bottom: 60px;
}
@media all and (max-width: 767px) {
  #official_top .bnr_area .user_guide_bnr {
    margin-bottom: 8vw;
  }
}
#official_top .bnr_area .user_guide_bnr a {
  background-image: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/user_guide_bnr_bg01.png"), url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/user_guide_bnr_bg02.png");
  background-color: var(--color-white);
  background-repeat: no-repeat, no-repeat;
  background-position: 0 50%, 100% 50%;
  background-size: 106px 98px, 100px 98px;
  text-align: center;
  padding: 20px;
  width: 100%;
  height: 100%;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  #official_top .bnr_area .user_guide_bnr a {
    background-position: 0 50%, 100% 50%;
    background-size: 17.3333333333vw 16vw, 16.2666666667vw 16vw;
    background-position: 0 10%, 100% 90%;
    padding: 4vw 6.6666666667vw;
    min-height: 42vw;
  }
}
#official_top .bnr_area .user_guide_bnr a > * {
  text-shadow: 2px 2px 0 var(--color-white), -2px -2px 0 var(--color-white), -2px 2px 0 var(--color-white), 2px -2px 0 var(--color-white), 0px 2px 0 var(--color-white), -2px 0 var(--color-white), -2px 0 0 var(--color-white), 2px 0 0 var(--color-white);
}
#official_top .bnr_area .user_guide_bnr a .ttl {
  color: var(--color-main);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media all and (max-width: 767px) {
  #official_top .bnr_area .user_guide_bnr a .ttl {
    font-size: 4.8vw;
    line-height: 1.2;
    margin-bottom: 1.3333333333vw;
  }
}
#official_top .bnr_area .user_guide_bnr a .ttl span {
  display: inline-block;
}
#official_top .bnr_area .user_guide_bnr a .txt {
  font-size: 14px;
  line-height: 1.3;
}
@media all and (max-width: 767px) {
  #official_top .bnr_area .user_guide_bnr a .txt {
    font-size: 3.4666666667vw;
  }
}
#official_top .bnr_area .other_list {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 767px) {
  #official_top .bnr_area .other_list {
    flex-direction: column;
  }
}
#official_top .bnr_area .other_list li {
  width: 32%;
}
@media all and (max-width: 767px) {
  #official_top .bnr_area .other_list li {
    width: 100%;
  }
  #official_top .bnr_area .other_list li:not(:last-of-type) {
    margin-bottom: 8vw;
  }
}
#official_top #page_top_btn {
  background: var(--color-white);
  height: 50px;
  width: 50px;
  border: 2px solid var(--color-main);
  border-radius: 50%;
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  transition: 0.2s;
  z-index: 2;
}
#official_top #page_top_btn:before {
  content: "";
  background: url("https://celcliptipsdev.s3-ap-northeast-1.amazonaws.com/official/arrow_page_top.png") no-repeat 0 0/contain;
  width: 25px;
  height: 15px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: translateY(-2px);
}
#official_top #page_top_btn:hover {
  opacity: 0.9;
}