@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-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 (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-sc);
}
#official_top {
  background: var(--color-white);
  overflow: hidden;
}
#official_top img {
  width: 100%;
  height: auto;
}
#official_top a:hover {
  opacity: 0.8;
}
#official_top .only_pc {
  display: block;
}
@media (max-width: 768px) {
  #official_top .only_pc {
    display: none;
  }
}
#official_top .only_mobile {
  display: none;
}
@media (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 (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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .btn_arrow > a, #official_top .btn_arrow > span {
    height: calc(40 * 100 / 1000 * 1vw);
    padding: 0 calc(20 * 100 / 1000 * 1vw) 0 calc(10 * 100 / 1000 * 1vw);
  }
  #official_top .btn_arrow > a::before, #official_top .btn_arrow > span::before {
    width: calc(20 * 100 / 1000 * 1vw);
    height: calc(20 * 100 / 1000 * 1vw);
    margin-right: calc(20 * 100 / 1000 * 1vw);
  }
  #official_top .btn_arrow > a::after, #official_top .btn_arrow > span::after {
    content: "";
    width: calc(40 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .btn_arrow > a, #official_top .btn_arrow > span {
    height: calc(60 * 100 / 750 * 1vw);
    padding: 0 calc(30 * 100 / 750 * 1vw) 0 calc(15 * 100 / 750 * 1vw);
  }
  #official_top .btn_arrow > a::before, #official_top .btn_arrow > span::before {
    width: calc(31 * 100 / 750 * 1vw);
    height: calc(31 * 100 / 750 * 1vw);
    margin-right: calc(30 * 100 / 750 * 1vw);
  }
  #official_top .btn_arrow > a::after, #official_top .btn_arrow > span::after {
    width: calc(60 * 100 / 750 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .btn_arrow > a span, #official_top .btn_arrow > span span {
    font-size: calc(16 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .btn_arrow > a span, #official_top .btn_arrow > span span {
    font-size: calc(24 * 100 / 750 * 1vw);
  }
}
#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 (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 (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: calc(225 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .kv_area h2 .csp::before {
    width: calc(58 * 100 / 750 * 1vw);
    height: calc(51 * 100 / 750 * 1vw);
    top: -2.4vw;
    left: -55.3vw;
  }
  #official_top .kv_area h2 .csp::after {
    width: calc(46 * 100 / 750 * 1vw);
    height: calc(55 * 100 / 750 * 1vw);
    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 (max-width: 767px) {
  #official_top .kv_area h2 .csp div {
    font-size: calc(34 * 100 / 750 * 1vw);
    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: calc(34 * 100 / 750 * 1vw);
    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 (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 (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 (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 (max-width: 767px) {
  #official_top .kv_area h2 .main {
    font-size: calc(50 * 100 / 750 * 1vw);
  }
}
#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%);
  /* .tab_menu_area */
}
#official_top .tab_menu_area {
  /* padding-top: 38px; */
  padding-top: 29px;
  border-bottom: solid 4px;
}
@media (max-width: 767px) {
  #official_top .tab_menu_area {
    padding-top: calc(38 * 100 / 750 * 1vw);
    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 (max-width: 767px) {
  #official_top .tab_menu_area .ttl {
    font-size: calc(30 * 100 / 750 * 1vw);
    margin-bottom: calc(35 * 100 / 750 * 1vw);
  }
  #official_top .tab_menu_area .ttl::before {
    width: calc(60 * 100 / 750 * 1vw);
    height: calc(40 * 100 / 750 * 1vw);
    margin-right: calc(15 * 100 / 750 * 1vw);
  }
}
@media (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 (max-width: 767px) {
  #official_top .tab_menu_area .device_menu {
    height: calc(80 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .tab_menu_area .device_menu .items span {
    font-size: calc(24 * 100 / 750 * 1vw);
  }
}
#official_top .tab_menu_area .mode_menu_wrapper .inner {
  padding: 30px 60px 26px;
}
@media (max-width: 767px) {
  #official_top .tab_menu_area .mode_menu_wrapper .inner {
    padding: calc(20 * 100 / 750 * 1vw) calc(75 * 100 / 750 * 1vw) calc(18 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .tab_menu_area .mode_menu_wrapper .mode_menu {
    height: calc(90 * 100 / 750 * 1vw);
  }
  #official_top .tab_menu_area .mode_menu_wrapper .mode_menu::before {
    width: calc(50% - 4px);
    height: calc((90 * 100 / 750 * 1vw) - 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 (max-width: 767px) {
  #official_top .tab_menu_area .mode_menu_wrapper .mode_menu .items span {
    font-size: calc(24 * 100 / 750 * 1vw);
  }
}
#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%);
  /* .switch_device_content_wrapper & .switch_mode_content_wrapper */
}
#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;
  /* .introduction_area */
}
#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 (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 (max-width: 767px) {
  #official_top .introduction_area .inner {
    padding-top: calc(50 * 100 / 750 * 1vw);
    padding-bottom: calc(100 * 100 / 750 * 1vw);
  }
}
#official_top .introduction_area .switch_device_content {
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat-y;
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content {
    background-size: calc(149 * 100 / 1000 * 1vw) calc(245 * 100 / 1000 * 1vw), calc(231 * 100 / 1000 * 1vw) calc(219 * 100 / 1000 * 1vw), calc(239 * 100 / 1000 * 1vw) calc(378 * 100 / 1000 * 1vw), calc(186 * 100 / 1000 * 1vw) calc(185 * 100 / 1000 * 1vw), calc(252 * 100 / 1000 * 1vw) calc(367 * 100 / 1000 * 1vw), calc(205 * 100 / 1000 * 1vw) calc(257 * 100 / 1000 * 1vw), 100%;
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content {
    background-size: calc(89 * 100 / 750 * 1vw) calc(147 * 100 / 750 * 1vw), calc(137 * 100 / 750 * 1vw) calc(130 * 100 / 750 * 1vw), calc(143 * 100 / 750 * 1vw) calc(227 * 100 / 750 * 1vw), calc(186 * 100 / 750 * 1vw) calc(185 * 100 / 750 * 1vw), calc(151 * 100 / 750 * 1vw) calc(220 * 100 / 750 * 1vw), calc(123 * 100 / 750 * 1vw) calc(154 * 100 / 750 * 1vw), 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 (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper:not(.step1) {
    margin: calc(190* 100 / 750 * 1vw) auto 0;
  }
  #official_top .introduction_area .switch_device_content .step_wrapper:not(.step1)::before {
    width: calc(78 * 100 / 750 * 1vw);
    height: calc(77 * 100 / 750 * 1vw);
    top: calc(-130 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_ttl .step {
    font-size: calc(16 * 100 / 750 * 1vw);
    width: calc(80 * 100 / 750 * 1vw);
    height: calc(80 * 100 / 750 * 1vw);
    margin-right: calc(20 * 100 / 750 * 1vw);
  }
  #official_top .introduction_area .switch_device_content .step_wrapper .step_ttl .step::before {
    left: calc(4 * 100 / 750 * 1vw);
    top: calc(4 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_ttl .ttl {
    font-size: calc(34 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .lead {
    font-size: calc(26 * 100 / 750 * 1vw);
    margin-top: calc(40 * 100 / 750 * 1vw);
  }
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_box {
  /* margin-top: 40px; */
  margin-top: 30px;
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box {
    margin-top: calc(40 * 100 / 750 * 1vw);
  }
}
#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 (min-width: 1001px) and (max-width: 1160px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .media {
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .media {
    width: 65vw;
  }
}
@media (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: 1.7777777778;
}
#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 (min-width: 1001px) and (max-width: 1160px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box {
    width: 45%;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box {
    width: 65vw;
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box {
    width: calc(700 * 100 / 750 * 1vw);
    right: calc(-15 * 100 / 750 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box .ttl {
    font-size: calc(26 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box .ttl {
    font-size: calc(26 * 100 / 750 * 1vw);
    margin-bottom: calc(15 * 100 / 750 * 1vw);
  }
}
#official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box .txt {
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box .txt {
    font-size: calc(16 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content .step_wrapper .step_box .txt_box .txt {
    font-size: calc(24 * 100 / 750 * 1vw);
    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 (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 (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 (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 {
    margin: 0 auto calc(190 * 100 / 750 * 1vw);
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box {
  position: relative;
  height: 424px;
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box {
    height: calc(570 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box {
    height: unset;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box.de {
    height: calc(600 * 100 / 1000 * 1vw);
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box > * {
  position: absolute;
}
@media (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 (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 (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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step1 .step_box .txt_box {
    padding: calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(80 * 100 / 1000 * 1vw);
  }
}
@media (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: 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);
  }
}
#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 (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: calc(10 * 100 / 750 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box {
    height: calc(590 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box {
    height: unset;
  }
}
@media (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: calc(610 * 100 / 1000 * 1vw);
  }
}
#official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box > * {
  position: absolute;
}
@media (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 (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 (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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.pc .step_wrapper.step2 .step_box .txt_box {
    padding: calc(55 * 100 / 1000 * 1vw) calc(80 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw);
  }
}
@media (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: calc(700 * 100 / 750 * 1vw);
    right: calc(-15 * 100 / 750 * 1vw);
    margin-top: calc(-40 * 100 / 750 * 1vw);
    left: unset;
    padding: calc(80 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
  }
}
#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 (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: calc(10 * 100 / 750 * 1vw);
  }
}
#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 (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: calc(149 * 100 / 1000 * 1vw) calc(245 * 100 / 1000 * 1vw), calc(231 * 100 / 1000 * 1vw) calc(219 * 100 / 1000 * 1vw), calc(239 * 100 / 1000 * 1vw) calc(378 * 100 / 1000 * 1vw), calc(186 * 100 / 1000 * 1vw) calc(185 * 100 / 1000 * 1vw), calc(252 * 100 / 1000 * 1vw) calc(367 * 100 / 1000 * 1vw), calc(205 * 100 / 1000 * 1vw) calc(257 * 100 / 1000 * 1vw), calc(231 * 100 / 1000 * 1vw) calc(219 * 100 / 1000 * 1vw), 100%;
  }
}
@media (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: calc(89 * 100 / 750 * 1vw) calc(147 * 100 / 750 * 1vw), calc(137 * 100 / 750 * 1vw) calc(130 * 100 / 750 * 1vw), calc(143 * 100 / 750 * 1vw) calc(227 * 100 / 750 * 1vw), calc(186 * 100 / 750 * 1vw) calc(185 * 100 / 750 * 1vw), calc(151 * 100 / 750 * 1vw) calc(220 * 100 / 750 * 1vw), calc(123 * 100 / 750 * 1vw) calc(154 * 100 / 750 * 1vw), calc(137 * 100 / 750 * 1vw) calc(130 * 100 / 750 * 1vw), 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 (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 {
    margin: 0 auto calc(190 * 100 / 750 * 1vw);
  }
}
#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 (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: calc(-50 * 100 / 750 * 1vw);
    padding: calc(50 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list {
  display: flex;
  justify-content: space-between;
}
@media (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 (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li {
    padding: calc(40 * 100 / 750 * 1vw) 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 (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: calc(10 * 100 / 750 * 1vw);
  }
}
#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 (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: calc(30 * 100 / 750 * 1vw);
    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 (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: calc(30 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.simple .ttl {
    font-size: calc(26 * 100 / 750 * 1vw);
  }
}
#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 (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: calc(18 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.simple .txt {
    font-size: calc(24 * 100 / 750 * 1vw);
  }
}
#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 (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 (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: calc(14 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step1 .step_box .txt_box .list li.studio .txt {
    font-size: calc(24 * 100 / 750 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1 {
    height: calc(570 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1 {
    height: unset;
  }
}
@media (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: calc(590 * 100 / 1000 * 1vw);
  }
}
@media (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 {
    height: calc(540 * 100 / 1000 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box1 .txt_box {
    padding: calc(55 * 100 / 1000 * 1vw) calc(80 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw);
  }
}
@media (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: calc(80 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
    left: unset;
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2 {
  height: 424px;
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2 {
    height: calc(620 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2 {
    height: unset;
  }
}
@media (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: calc(650 * 100 / 1000 * 1vw);
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2.zh {
    height: calc(600 * 100 / 1000 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box.box2 .txt_box {
    padding: calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(110 * 100 / 1000 * 1vw) calc(80 * 100 / 1000 * 1vw);
  }
}
@media (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: calc(80 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
    right: calc(-15 * 100 / 750 * 1vw);
  }
}
#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 (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: calc(10 * 100 / 750 * 1vw);
    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 (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 (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step2 .step_box .txt_box {
    position: relative;
    width: calc(700 * 100 / 750 * 1vw);
    right: calc(-15 * 100 / 750 * 1vw);
    margin-top: calc(-40 * 100 / 750 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1 {
    height: calc(570 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1 {
    height: unset;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1.de {
    height: calc(590 * 100 / 1000 * 1vw);
  }
}
@media (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: calc(540 * 100 / 1000 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box1 .txt_box {
    padding: calc(55 * 100 / 1000 * 1vw) calc(80 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw);
  }
}
@media (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: calc(80 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
    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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 {
    width: unset;
    height: calc(510 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 {
    width: unset;
    height: unset;
    margin-top: calc(40 * 100 / 750 * 1vw);
  }
}
@media (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: calc(530 * 100 / 1000 * 1vw);
  }
}
@media (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: calc(560 * 100 / 1000 * 1vw);
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 .media {
  width: 60%;
  left: 0;
}
@media (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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box.box2 .txt_box {
    padding: calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(80 * 100 / 1000 * 1vw);
    width: 55vw;
  }
}
@media (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: calc(80 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
    width: calc(700 * 100 / 750 * 1vw);
    right: calc(-15 * 100 / 750 * 1vw);
  }
}
#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: calc(16* 100 / 1000* 1vw);
  }
}
@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: calc(24* 100 / 750* 1vw);
  }
}
#official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box .media {
  position: absolute;
  bottom: 0;
}
@media (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 (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.tablet .step_wrapper.step3 .step_box .txt_box {
    position: relative;
    width: calc(700 * 100 / 750 * 1vw);
    right: calc(-15 * 100 / 750 * 1vw);
    margin-top: calc(-40 * 100 / 750 * 1vw);
  }
}
#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 (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 (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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 {
    height: calc(620 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 {
    height: unset;
  }
}
@media (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: calc(640 * 100 / 1000 * 1vw);
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1.de {
    height: calc(670 * 100 / 1000 * 1vw);
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1.zh {
    height: calc(590 * 100 / 1000 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 .txt_box {
    padding: calc(55 * 100 / 1000 * 1vw) calc(80 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw);
  }
}
@media (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: calc(80 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
    left: unset;
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 .txt_box .ttl {
  font-size: 23px;
}
@media (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: calc(30 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box1 .txt_box .ttl {
    font-size: calc(26 * 100 / 750 * 1vw);
  }
}
#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 (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: calc(10 * 100 / 750 * 1vw);
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 {
  height: 374px;
  width: 90%;
  margin: 30px auto 0;
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 {
    height: calc(540 * 100 / 1000 * 1vw);
    width: unset;
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 {
    height: unset;
    width: unset;
    margin-top: calc(40 * 100 / 750 * 1vw);
  }
}
@media (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: calc(560 * 100 / 1000 * 1vw);
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2.es {
    height: calc(570 * 100 / 1000 * 1vw);
  }
}
@media (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: calc(520 * 100 / 1000 * 1vw);
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .media {
  width: 60%;
  left: 0;
}
@media (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 (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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box {
    padding: calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(80 * 100 / 1000 * 1vw);
    width: 55vw;
  }
}
@media (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: calc(80 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
    width: calc(700 * 100 / 750 * 1vw);
    right: calc(-15 * 100 / 750 * 1vw);
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box .txt {
  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 .txt {
    font-size: calc(14 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box.box2 .txt_box .txt {
    font-size: calc(24 * 100 / 750 * 1vw);
  }
}
#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 (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: calc(10 * 100 / 750 * 1vw);
  }
}
#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: calc(16* 100 / 1000* 1vw);
  }
}
@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: calc(24* 100 / 750* 1vw);
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box .media {
  position: absolute;
  bottom: 0;
}
@media (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 (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step1 .step_box .txt_box {
    position: relative;
    width: calc(700 * 100 / 750 * 1vw);
    right: calc(-15 * 100 / 750 * 1vw);
    margin-top: calc(-40 * 100 / 750 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box {
    height: calc(570 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box {
    height: unset;
  }
}
@media (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: calc(590 * 100 / 1000 * 1vw);
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box.zh {
    height: calc(540 * 100 / 1000 * 1vw);
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box > * {
  position: absolute;
}
@media (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 (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 (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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step2 .step_box .txt_box {
    padding: calc(55 * 100 / 1000 * 1vw) calc(80 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(50 * 100 / 1000 * 1vw);
  }
}
@media (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: calc(700 * 100 / 750 * 1vw);
    right: calc(-15 * 100 / 750 * 1vw);
    left: unset;
    margin-top: calc(-40 * 100 / 750 * 1vw);
    padding: calc(80 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
  }
}
#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 (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: calc(10 * 100 / 750 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1 {
    height: calc(570 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1 {
    height: unset;
  }
}
@media (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: calc(590 * 100 / 1000 * 1vw);
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1.zh {
    height: calc(550 * 100 / 1000 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box1 .txt_box {
    padding: calc(55 * 100 / 1000 * 1vw) calc(80 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw);
  }
}
@media (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: calc(80 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
    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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 {
    width: unset;
    height: calc(510 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 {
    width: unset;
    height: unset;
    margin-top: calc(40 * 100 / 750 * 1vw);
  }
}
@media (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: calc(530 * 100 / 1000 * 1vw);
  }
}
@media (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: calc(560 * 100 / 1000 * 1vw);
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 .media {
  width: 60%;
  left: 0;
}
@media (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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box.box2 .txt_box {
    padding: calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(55 * 100 / 1000 * 1vw) calc(80 * 100 / 1000 * 1vw);
    width: 55vw;
  }
}
@media (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: calc(80 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
    width: calc(700 * 100 / 750 * 1vw);
    right: calc(-15 * 100 / 750 * 1vw);
  }
}
#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: calc(16* 100 / 1000* 1vw);
  }
}
@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: calc(24* 100 / 750* 1vw);
  }
}
#official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box .media {
  position: absolute;
  bottom: 0;
}
@media (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 (max-width: 767px) {
  /* .tips_area */
  #official_top .introduction_area .switch_device_content.mobile .step_wrapper.step3 .step_box .txt_box {
    position: relative;
    width: calc(700 * 100 / 750 * 1vw);
    right: calc(-15 * 100 / 750 * 1vw);
    margin-top: calc(-40 * 100 / 750 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1000px) {
  #official_top .tips_area {
    background-position: -20% calc(850 * 100 / 1000 * 1vw), 120% calc(140 * 100 / 1000 * 1vw), 50% 0;
    background-size: calc(272 * 100 / 1000 * 1vw) calc(1416 * 100 / 1000 * 1vw), calc(272 * 100 / 1000 * 1vw) calc(1416 * 100 / 1000 * 1vw), calc(40 * 100 / 1000 * 1vw) calc(40 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .tips_area {
    background-position: calc(-50 * 100 / 750 * 1vw) calc(680 * 100 / 750 * 1vw), calc((50 * 100 / 750 * 1vw) + 100%) calc(140 * 100 / 750 * 1vw), 50% 0;
    background-size: calc(172 * 100 / 750 * 1vw) calc(895 * 100 / 750 * 1vw), calc(172 * 100 / 750 * 1vw) calc(895 * 100 / 750 * 1vw), calc(40 * 100 / 750 * 1vw) calc(40 * 100 / 750 * 1vw);
    padding-top: calc(80 * 100 / 750 * 1vw);
    padding-bottom: calc(100 * 100 / 750 * 1vw);
  }
}
#official_top .tips_area #page_in_link2 {
  padding-top: 70px;
  margin-top: -70px;
  position: relative;
  top: -60px;
  pointer-events: none;
}
@media (max-width: 767px) {
  #official_top .tips_area #page_in_link2 {
    padding-top: unset;
    margin-top: unset;
    top: calc(80 * 100 / 750 * -1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .tips_area .area_ttl {
    font-size: calc(36 * 100 / 750 * 1vw);
    margin-bottom: calc(50 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .tips_area .area_ttl span::before {
    width: calc(60 * 100 / 750 * 1vw);
    height: calc(64 * 100 / 750 * 1vw);
    left: calc(-64 * 100 / 750 * 1vw);
  }
}
#official_top .tips_area .tips_cat_list {
  /* margin-bottom: 30px; */
  margin: -70px 0 30px;
  padding-top: 70px;
}
@media (max-width: 767px) {
  #official_top .tips_area .tips_cat_list {
    /* margin-bottom: calc(30 * 100 / 750 * 1vw); */
    margin: unset 0 calc(30 * 100 / 750 * 1vw);
  }
}
#official_top .tips_area .tips_cat_list .bg {
  /* padding: 25px 30px 30px; */
  padding: 25px 30px 30px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #official_top .tips_area .tips_cat_list .bg {
    padding: calc(30 * 100 / 750 * 1vw) calc(20 * 100 / 750 * 1vw) calc(40 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .tips_area .tips_cat_list .ttl {
    font-size: calc(30 * 100 / 750 * 1vw);
    margin-bottom: calc(30 * 100 / 750 * 1vw);
  }
  #official_top .tips_area .tips_cat_list .ttl::before {
    width: calc(32 * 100 / 750 * 1vw);
    height: calc(32 * 100 / 750 * 1vw);
    margin-right: calc(10 * 100 / 750 * 1vw);
  }
}
#official_top .tips_area .tips_cat_list .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (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(100% / 3 - 14px);
  aspect-ratio: 2.9411764706;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #official_top .tips_area .tips_cat_list .list li {
    width: calc(100% / 2 - 5px);
    aspect-ratio: 2.5;
  }
}
#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 (min-width: 768px) and (max-width: 1140px) {
  #official_top .tips_area .tips_cat_list .list li a::after {
    width: calc(24 * 100 / 1000 * 1vw);
    height: calc(24 * 100 / 1000 * 1vw);
    bottom: calc(13 * 100 / 1000 * 1vw);
  }
  #official_top .tips_area .tips_cat_list .list li a:hover::after {
    bottom: calc(8 * 100 / 750 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .tips_area .tips_cat_list .list li a::after {
    width: calc(28 * 100 / 750 * 1vw);
    height: calc(28 * 100 / 750 * 1vw);
    bottom: calc(13 * 100 / 750 * 1vw);
  }
  #official_top .tips_area .tips_cat_list .list li a:hover::after {
    bottom: calc(8 * 100 / 750 * 1vw);
  }
}
#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 (min-width: 768px) and (max-width: 1140px) {
  #official_top .tips_area .tips_cat_list .list li a span {
    font-size: calc(18 * 100 / 1000 * 1vw);
    top: calc(-10 * 100 / 1000 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .tips_area .tips_cat_list .list li a span {
    font-size: calc(26 * 100 / 750 * 1vw);
    top: calc(-10 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .tips_area .tips_cat_box {
    padding: calc(40 * 100 / 750 * 1vw) 0 calc(30 * 100 / 750 * 1vw);
    margin-top: unset;
  }
}
#official_top .tips_area .tips_cat_box .cat_ttl {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  #official_top .tips_area .tips_cat_box .cat_ttl {
    margin-bottom: calc(25 * 100 / 750 * 1vw);
  }
}
#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 (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: calc(456 * 100 / 750 * 1vw);
    min-height: calc(78 * 100 / 750 * 1vw);
    padding: calc(20 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .tips_area .tips_cat_box .cat_ttl .bg span {
    font-size: calc(30 * 100 / 750 * 1vw);
    margin-top: calc(-9 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .tips_area .tips_ttl_solid {
    margin-top: calc(40 * 100 / 750 * 1vw);
    padding: calc(17 * 100 / 750 * 1vw) calc(30 * 100 / 750 * 1vw) calc(20 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .tips_area .tips_ttl_solid span {
    font-size: calc(32 * 100 / 750 * 1vw);
  }
  #official_top .tips_area .tips_ttl_solid span::before, #official_top .tips_area .tips_ttl_solid span::after {
    height: calc(40 * 100 / 750 * 1vw);
  }
  #official_top .tips_area .tips_ttl_solid span::before {
    top: calc(-30 * 100 / 750 * 1vw);
    left: calc(-20 * 100 / 750 * 1vw);
  }
  #official_top .tips_area .tips_ttl_solid span::after {
    right: calc(-20 * 100 / 750 * 1vw);
    bottom: calc(-30 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .tips_area .slider_wrapper {
    /* padding-bottom: 8vw; */
    padding: 0 0 8vw 10px;
  }
}
@media (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 (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 > * {
  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 (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .thumb.video::before {
    width: calc(70 * 100 / 750 * 1vw);
    height: calc(50 * 100 / 750 * 1vw);
  }
}
@media (min-width: 768px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .thumb.short_video img {
    aspect-ratio: 0.75;
    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 (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .thumb .note {
    font-size: calc(22 * 100 / 750 * 1vw);
    padding: calc(6 * 100 / 750 * 1vw) calc(10 * 100 / 750 * 1vw) calc(8 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .thumb .time {
    font-size: calc(20 * 100 / 750 * 1vw);
    padding: 0 calc(8 * 100 / 750 * 1vw) calc(2 * 100 / 750 * 1vw);
  }
}
#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 (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 (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .ttl {
    font-size: calc(24 * 100 / 750 * 1vw);
  }
}
#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 (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: calc(22 * 100 / 750 * 1vw);
  }
}
div#input_wrapper.ja #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 .txt, 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 .txt, 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.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 .txt, 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 .txt, 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 .txt, 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 (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 (max-width: 767px) {
  #official_top .tips_area .swiper .swiper-wrapper .swiper-slide .txt_box .link a {
    font-size: calc(22 * 100 / 750 * 1vw);
  }
}
#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 (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 (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 (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 (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 (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 (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 (max-width: 767px) {
  /* .function_section */
  #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: calc(100vw);
  position: relative;
  left: 50%;
  right: 50%;
}
@media (min-width: 768px) and (max-width: 1000px) {
  #official_top .function_section {
    background-size: calc(50 * 100 / 1000 * 1vw);
    margin: calc(60 * 100 / 1000 * 1vw) -50vw calc(100 * 100 / 1000 * 1vw);
    padding: calc(100 * 100 / 1000 * 1vw) 0;
  }
}
@media (max-width: 767px) {
  #official_top .function_section {
    background-size: calc(50 * 100 / 750 * 1vw);
    margin: calc(60 * 100 / 750 * 1vw) -50vw calc(100 * 100 / 750 * 1vw);
    padding: calc(80 * 100 / 750 * 1vw) 0 calc(100 * 100 / 750 * 1vw);
  }
}
#official_top .function_section #page_in_link3 {
  padding-top: 70px;
  margin-top: -70px;
  position: relative;
  top: -60px;
  pointer-events: none;
}
@media (max-width: 767px) {
  #official_top .function_section #page_in_link3 {
    padding-top: unset;
    margin-top: unset;
    top: calc(80 * 100 / 750 * -1vw);
  }
}
#official_top .function_section .section_ttl {
  text-align: center;
  /* margin-bottom: 53px; */
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  #official_top .function_section .section_ttl {
    /* margin-bottom: calc(50 * 100 / 750 * 1vw); */
    margin-bottom: calc(25 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .function_section .section_ttl .bg {
    min-width: unset;
    padding: calc(25 * 100 / 750 * 1vw) calc(25 * 100 / 750 * 1vw) calc(20 * 100 / 750 * 1vw) calc(15 * 100 / 750 * 1vw);
    min-height: unset;
    width: 90%;
  }
  #official_top .function_section .section_ttl .bg::before {
    background-size: contain;
    width: calc(70 * 100 / 750 * 1vw);
    top: calc(-34 * 100 / 750 * 1vw);
    left: calc(-34 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .function_section .section_ttl span {
    font-size: calc(30 * 100 / 750 * 1vw);
    /* right: calc(14 * 100 / 750 * 1vw); */
    bottom: calc(6 * 100 / 750 * 1vw);
  }
}
#official_top .function_section > .lead {
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  #official_top .function_section > .lead {
    font-size: calc(20 * 100 / 750 * 1vw);
    margin-bottom: calc(30 * 100 / 750 * 1vw);
  }
}
#official_top .function_section .function_box:not(:last-of-type) {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  #official_top .function_section .function_box:not(:last-of-type) {
    margin-bottom: calc(60 * 100 / 750 * 1vw);
  }
}
#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: 7.4074074074;
  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 (max-width: 767px) {
  #official_top .function_section .function_box .cat_ttl .bg {
    min-width: calc(500 * 100 / 750 * 1vw);
  }
  #official_top .function_section .function_box .cat_ttl .bg::after {
    border-radius: 6px;
    top: calc(5 * 100 / 750 * 1vw);
    left: calc(5 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .function_section .function_box .cat_ttl span {
    font-size: calc(30 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .function_section .function_box .function_list {
    margin-top: calc(-30 * 100 / 750 * 1vw);
    padding: calc(60 * 100 / 750 * 1vw) calc(30 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
    border-radius: calc(30 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .function_section .function_box .function_list > li:nth-of-type(-n+3) {
    margin-bottom: unset;
  }
}
@media (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: calc(30 * 100 / 750 * 1vw);
  }
}
#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 (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: calc(24 * 100 / 1000 * 1vw);
    height: calc(24 * 100 / 1000 * 1vw);
  }
  #official_top .function_section .function_box .function_list > li .ttl a:hover::after {
    right: calc(10 * 100 / 750 * 1vw);
  }
}
@media (max-width: 767px) {
  #official_top .function_section .function_box .function_list > li .ttl a {
    font-size: calc(22 * 100 / 750 * 1vw);
    min-height: calc(100 * 100 / 750 * 1vw);
    padding: calc(15 * 100 / 750 * 1vw) calc(60 * 100 / 750 * 1vw) calc(20 * 100 / 750 * 1vw) calc(15 * 100 / 750 * 1vw);
  }
  #official_top .function_section .function_box .function_list > li .ttl a::after {
    width: calc(28 * 100 / 750 * 1vw);
    height: calc(28 * 100 / 750 * 1vw);
  }
  #official_top .function_section .function_box .function_list > li .ttl a:hover::after {
    right: calc(10 * 100 / 750 * 1vw);
  }
}
#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, white 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 (max-width: 767px) {
  #official_top .function_section .function_box .function_list > li .function_tag_list {
    padding: calc(20 * 100 / 750 * 1vw);
  }
  #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 (max-width: 767px) {
  #official_top .function_section .function_box .function_list > li .function_tag_list li:not(:last-of-type) {
    margin-bottom: calc(15 * 100 / 750 * 1vw);
  }
}
#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 (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 (max-width: 767px) {
  #official_top .function_section .function_box .function_list > li .function_tag_list li a {
    font-size: calc(22 * 100 / 750 * 1vw);
    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;
  /* .bnr_area */
}
#official_top .bnr_area {
  background: var(--color-main);
  padding: 100px 0;
}
@media (max-width: 767px) {
  #official_top .bnr_area {
    padding: calc(100 * 100 / 750 * 1vw) 0;
  }
}
@media (max-width: 767px) {
  #official_top .bnr_area .inner {
    width: 85%;
    padding: unset;
  }
}
#official_top .bnr_area .user_guide_bnr {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  #official_top .bnr_area .user_guide_bnr {
    margin-bottom: calc(60 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .bnr_area .user_guide_bnr a {
    background-position: 0 50%, 100% 50%;
    background-size: calc(130 * 100 / 750 * 1vw) calc(120 * 100 / 750 * 1vw), calc(122 * 100 / 750 * 1vw) calc(120 * 100 / 750 * 1vw);
    background-position: 0 10%, 100% 90%;
    padding: calc(30 * 100 / 750 * 1vw) calc(50 * 100 / 750 * 1vw);
    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 (max-width: 767px) {
  #official_top .bnr_area .user_guide_bnr a .ttl {
    font-size: calc(36 * 100 / 750 * 1vw);
    line-height: 1.2;
    margin-bottom: calc(10 * 100 / 750 * 1vw);
  }
}
#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 (max-width: 767px) {
  #official_top .bnr_area .user_guide_bnr a .txt {
    font-size: calc(26 * 100 / 750 * 1vw);
  }
}
#official_top .bnr_area .other_list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #official_top .bnr_area .other_list {
    flex-direction: column;
  }
}
#official_top .bnr_area .other_list li {
  width: 32%;
}
@media (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: calc(60 * 100 / 750 * 1vw);
  }
}
#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;
}
