@charset "UTF-8";
/* Margin Calc Set
===============================*/
@keyframes is-open-pc {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
  }
}
/* Base Style
===============================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1535px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 1326px) {
  html {
    font-size: 44%;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 62.5%;
  }
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

/* Visible Style
===============================*/
@media screen and (max-width: 800px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 1110px) {
  .tb {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .sp {
    display: block;
  }
}

.sp-600 {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp-600 {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .pc-600 {
    display: none;
  }
}

.sp-360 {
  display: none;
}
@media screen and (max-width: 365px) {
  .sp-360 {
    display: block;
  }
}

#footer-link-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  #footer-link-sp {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  #footer-link-pc {
    display: none;
  }
}

.nav-sp {
  display: none;
}
@media screen and (max-width: 1110px) {
  .nav-sp {
    display: block;
  }
}

@media screen and (max-width: 1110px) {
  .nav-pc {
    display: none;
  }
}

/* Header Section 
===============================*/
.header-body {
  position: fixed;
  width: 100%;
  border-radius: 0 0 100px 100px;
  background-color: #ffffff;
  box-shadow: 0px 2px 1px rgba(96, 53, 44, 0.05);
  z-index: 20000;
  transition: 0.15s;
}
@media screen and (max-width: 800px) {
  .header-body {
    border-radius: 0 0 40px 40px;
  }
}
.header-body div.header-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66%;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 19000;
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 82%;
  }
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide .header-logo {
    width: 134px;
  }
  .header-body div.header-wide .header-logo img {
    width: 100%;
  }
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .header-logo {
    width: 114px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide .header-logo {
    width: 90px;
  }
}
.header-body div.header-wide .nav-list-main {
  display: flex;
  justify-content: space-between;
  width: 62%;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-list-main {
    width: 49%;
  }
}
.header-body div.header-wide .nav-list-main li {
  font-size: 1.7rem;
  font-weight: 900;
  color: #3b201b;
}
@media screen and (max-width: 800px) {
  .header-body div.header-wide .nav-list-main li {
    font-size: 1rem;
  }
}
.header-body div.header-wide .nav-button div {
  width: 25px;
  height: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div {
    width: 19px;
  }
}
.header-body div.header-wide .nav-button div:hover {
  cursor: pointer;
}
.header-body div.header-wide .nav-button div:first-child {
  background-color: #008132;
  margin-bottom: 7.5px;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:first-child {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(2) {
  background-color: #c8000f;
  margin-bottom: 7.5px;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:nth-child(2) {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(3) {
  background-color: #ffc400;
  transition: 0.2s;
}
.header-body div.header-wide .nav-active:first-child {
  transform: rotate(45deg) translate(10px, 10px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:first-child {
    transform: rotate(45deg) translate(7px, 7px);
  }
}
.header-body div.header-wide .nav-active:nth-child(2) {
  opacity: 0;
}
.header-body div.header-wide .nav-active:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

.header-body-open {
  border-radius: 0;
  transition: 0.15s;
  z-index: 20000;
}

.nav-open {
  position: absolute;
  position: fixed;
  top: -100px;
  width: 100%;
  height: 73px;
  background-color: #ffc400;
  z-index: 5000;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open {
    height: 66px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open {
    overflow-y: scroll;
  }
}
.nav-open .header-curve {
  width: 100vw;
}
@media screen and (max-width: 1110px) {
  .nav-open .header-curve {
    display: none;
  }
}
.nav-open .header-curve img {
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding: 0 10% 0 10%;
  }
}
.nav-open .nav-container-sp .common-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  padding: 47px 22px 0 22px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 1535px) {
  .nav-open .nav-container-sp .common-menu {
    max-width: 1000px;
    padding-top: 36px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu {
    display: block;
    width: auto;
    padding: 0;
    margin: 0;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    margin-bottom: 24px;
    font-size: 24px;
    color: #3b201b;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 21px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 19px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
  margin-bottom: 20px;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
  width: auto;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
    display: block;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list {
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li {
  padding-right: 11px;
  padding-left: 11px;
  border-right: 1px solid #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect #menu-effect-last {
  margin-bottom: 28px;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns {
  display: flex;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns li {
  padding-left: 10px;
}
@media screen and (max-width: 1110px) {
  .nav-open #header_sns_sp {
    display: inline;
    animation: is-open-pc 0.47s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
    opacity: 0;
  }
  .nav-open #header_sns_sp li {
    margin-bottom: 22px;
  }
  .nav-open #header_sns_sp img {
    width: 32px;
  }
}
.nav-open .pc-effect-active {
  animation: is-open-pc 0.47s ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
.nav-open .pc-effect-active:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-open .pc-effect-active:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-open .pc-effect-active:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-open .pc-effect-active:nth-child(5) {
  animation-delay: 0.5s;
}
.nav-open .pc-effect-active:nth-child(6) {
  animation-delay: 0.6s;
}
.nav-open .pc-effect-active:nth-child(n+7) {
  animation-delay: 0.7s;
}
@media screen and (max-width: 1110px) {
  .nav-open .pc-effect-active:nth-child(6) {
    animation-delay: 0s;
  }
  .nav-open .pc-effect-active:nth-child(7) {
    animation-delay: 0.1s;
  }
  .nav-open .pc-effect-active:nth-child(8) {
    animation-delay: 0.2s;
  }
  .nav-open .pc-effect-active:nth-child(9) {
    animation-delay: 0.3s;
  }
  .nav-open .pc-effect-active:nth-child(10) {
    animation-delay: 0.4s;
  }
  .nav-open .pc-effect-active:nth-child(11) {
    animation-delay: 0.5s;
  }
  .nav-open .pc-effect-active:nth-child(12) {
    animation-delay: 0.6s;
  }
  .nav-open .pc-effect-active:nth-child(13) {
    animation-delay: 0.7s;
  }
  .nav-open .pc-effect-active:nth-child(n+14) {
    animation-delay: 0.8s;
  }
}

.nav-open-active {
  top: 100px;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open-active {
    top: 70px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open-active {
    top: 0px;
    width: 100vw;
    height: 100vh;
  }
}

/* Footer Section 
================================*/
footer {
  z-index: 500;
}

.app-link {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #c8000f;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .app-link {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.app-link img {
  max-width: 956px;
}
@media screen and (max-width: 1535px) {
  .app-link img {
    max-width: 878px;
  }
}
@media screen and (max-width: 1110px) {
  .app-link img {
    max-width: 70%;
  }
}
@media screen and (max-width: 800px) {
  .app-link img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .app-link img {
    max-width: 88%;
  }
}

.footer-nav {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #60352c;
  background-image: url(/lp/2025_kotoshimogulliver/images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(/lp/2025_kotoshimogulliver/images/footer_illust_sp.png);
    padding-top: 35px;
    padding-bottom: 110px;
    padding-left: 8.1%;
    padding-right: 8.1%;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav {
    padding-bottom: 90px;
  }
}
.footer-nav ul.footer-link {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 25px auto;
  color: #fff;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1110px) {
  .footer-nav ul.footer-link {
    max-width: 700px;
  }
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link {
    font-size: 1.1rem;
  }
}
.footer-nav ul.footer-link li {
  width: 25%;
  margin-bottom: 21px;
}
.footer-nav ul.footer-link li:nth-child(4n+1) {
  width: 24%;
  padding-left: 1%;
}
.footer-nav ul.footer-link li:nth-child(4n+2) {
  width: 24%;
}
.footer-nav ul.footer-link li:nth-child(4n+3) {
  width: 27%;
}
.footer-nav ul.footer-link li:nth-child(4n+4) {
  width: 23.7%;
}
.footer-nav ul.footer-link li:nth-child(-n+4) {
  margin-bottom: 22px;
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .footer-nav ul.footer-link li:nth-child(4n+1) {
    width: 50%;
    padding-right: 10%;
    padding-left: 0;
  }
  .footer-nav ul.footer-link li:nth-child(4n+2) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+3) {
    width: 50%;
    padding-right: 10%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+4) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 15px;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav #footer-link-sp {
    display: flex;
  }
}
.footer-nav .footer-sns {
  display: flex;
  justify-content: space-between;
  width: 206px;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 600px) {
  .footer-nav .footer-sns {
    display: flex;
    justify-content: space-between;
    width: 167px;
    margin-bottom: 20px;
  }
}
.footer-nav .copy {
  font-size: 1.1rem;
  color: #a38680;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .footer-nav .copy {
    font-size: 1rem;
  }
}

/* OP STYLE
===============================*/
/* COLUMN STYLE
===============================*/
.column {
  position: relative;
  display: flex;
  overflow: visible;
}

.center {
  position: relative;
  overflow: visible;
  width: 600px;
  z-index: 50;
}
@media screen and (max-width: 1535px) {
  .center {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .center {
    width: 100%;
  }
}

/* LEFTSIDE
===============================*/
.leftside {
  position: sticky;
  overflow-x: clip;
  top: 0;
  left: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  background-position: right top;
  background-image: url(/lp/2025_kotoshimogulliver/images/left_bg.jpg);
  background-color: #000000;
  background-size: 662px;
  z-index: 32;
  transform: translateX(1px) scaleX(1.01);
}
@media screen and (max-width: 1535px) {
  .leftside {
    width: calc(50% - 225px);
    background-size: 660px;
  }
}
@media screen and (max-width: 600px) {
  .leftside {
    display: none;
  }
}

.leftA {
  width: 39.6%;
  top: 15%;
  left: 48%;
}

.leftB {
  width: 39.6%;
  top: 29%;
  left: 12%;
}

.leftC {
  width: 44.09%;
  top: 41%;
  left: 46%;
}

.leftD {
  width: 39.6%;
  top: 57%;
  left: 15%;
}

.leftE {
  width: 39.6%;
  top: 71%;
  left: 49%;
}

@media screen and (max-width: 800px) {
  .left-img {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .right-img {
    display: none;
  }
}

/* RIGHT SIDE
===============================*/
.rightside {
  position: sticky;
  overflow-x: clip;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: 662px;
  background-image: url(/lp/2025_kotoshimogulliver/images/right_bg.jpg);
  background-color: #000000;
  z-index: 32;
  transform: translateX(-1px) scaleX(1.01);
}
@media screen and (max-width: 1535px) {
  .rightside {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .rightside {
    display: none;
  }
}

.rightA {
  width: 30.6%;
  top: 14%;
  left: 38%;
}

.rightB {
  width: 30.6%;
  top: 35%;
  left: 12%;
}

.rightC {
  width: 30.09%;
  top: 42%;
  left: 56%;
}

.rightD {
  width: 45.6%;
  top: 65%;
  left: 12%;
}

.right-btn {
  width: 22%;
  bottom: 4%;
  right: 12%;
}

.right-btn-arrow {
  width: 50%;
  bottom: 5%;
  right: -10%;
  transform-origin: left bottom;
  transform: rotate(59deg);
  opacity: 0;
}

.right-btn-arrow-active {
  transform: rotate(0deg);
  opacity: 1;
  transition: 0.2s;
}

/* PRICE SETTINGS
===============================*/
.price {
  font-size: 44px;
  font-family: "rubik";
  color: #ffffff;
}
@media screen and (max-width: 1535px) {
  .price {
    font-size: 36px;
  }
}
@media screen and (max-width: 600px) {
  .price {
    font-size: 32px;
  }
}

.yen {
  font-size: 28px;
  font-family: fredoka one;
  font-weight: 400;
}
@media screen and (max-width: 1535px) {
  .yen {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .yen {
    font-size: 16px;
  }
}

.select-cap {
  font-size: 19px;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0em;
  color: #FFFFFF;
}
@media screen and (max-width: 1535px) {
  .select-cap {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .select-cap {
    font-size: 12px;
  }
}

.food .select-cap {
  color: #6b371d;
}

.selbox {
  font-size: 17px;
  font-weight: 900;
  color: #e40012;
}
@media screen and (max-width: 1535px) {
  .selbox {
    font-size: 13px;
  }
}
@media screen and (max-width: 600px) {
  .selbox {
    font-size: 11px;
  }
}

.gram {
  color: #44260e;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-size: 19px;
}
@media screen and (max-width: 1535px) {
  .gram {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .gram {
    font-size: 12px;
  }
}

.size {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 38px;
  padding-right: 4px;
}
@media screen and (max-width: 1535px) {
  .size {
    font-size: 29px;
  }
}
@media screen and (max-width: 600px) {
  .size {
    font-size: 24px;
  }
}

.caption {
  font-size: 14px;
  color: #43260a;
  margin-top: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 1535px) {
  .caption {
    margin-top: calc(40px * 0.75);
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .caption {
    margin-top: calc(40 * 0.625 / 375 * 100vw);
  }
}

/* MENU COMMON LAYOUT
===============================*/
.select-card {
  display: flex;
  width: 82.6%;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  background-image: url(/lp/2025_kotoshimogulliver/images/select_back.svg);
  background-repeat: no-repeat;
  background-size: 97.5%;
  padding: 5.5% 8% 10.8% 6%;
  margin: 0 auto 0px auto;
  filter: drop-shadow(0 2px 4px rgba(0, 8, 40, 0.4));
}
@media screen and (max-width: 1535px) {
  .select-card {
    padding-top: 5.2%;
    padding-bottom: 9.2%;
  }
}
@media screen and (max-width: 600px) {
  .select-card {
    padding-top: 4.5%;
    padding-bottom: 9.2%;
  }
}

.selbox {
  background-color: #FFFFFF;
  text-align: left;
  text-align: -webkit-left;
  width: 30.8%;
  padding-top: 12px;
  padding-bottom: 14px;
  padding-left: 17px;
  border-radius: 6px;
  background-image: url(/lp/2025_kotoshimogulliver/images/menu_arrow.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 13px center;
}
@media screen and (max-width: 1535px) {
  .selbox {
    padding-top: 11px;
    padding-bottom: 10px;
    padding-left: 13px;
  }
}
@media screen and (max-width: 600px) {
  .selbox {
    padding-left: 10px;
  }
}
@media screen and (max-width: 1535px) {
  .selbox {
    background-size: 18px;
    background-position: right 10px center;
  }
}
@media screen and (max-width: 600px) {
  .selbox {
    background-size: 15px;
    background-position: right 8px center;
  }
}

.pr-con {
  justify-content: space-between;
  width: 43.3%;
  margin: 0 auto 0 auto;
  text-align: center;
}
.pr-con .gram-only {
  width: 18.5%;
}
.pr-con .menu-dot {
  display: block;
  width: 60%;
  margin: 0 auto;
}

.pr-con-center {
  display: block;
  text-align: center;
}

.caption {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 1535px) {
  .caption {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .caption {
    font-size: 12px;
  }
}

.black {
  color: #040838;
}

.priceBL {
  color: #040838;
}

.selboxBL {
  background-image: url(/lp/2025_kotoshimogulliver/images/menu_arrowBL.svg);
  background-color: #040838;
  color: #db9e29;
}

/* オープニングモーダル
===================================*/
.fv {
  position: fixed;
  background-color: #e40012;
  width: 600px;
  height: 100vh;
  z-index: 1000;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .fv {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .fv {
    width: 100%;
  }
}

.fv-wrap-01 {
  top: 42%;
  left: 0;
  width: 100%;
}

.fv-wrap-02 {
  top: 42%;
  left: 0;
  width: 100%;
}

.fv-wrap-01-active {
  transform: translateX(100%);
  transition: 0.3s ease-in-out;
  transition-delay: 1.8s;
}

.fv-wrap-02-active {
  transform: translateX(100%);
  transition: 0.3s ease-in-out;
  transition-delay: 3.8s;
}

.fv-01 {
  width: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transform-origin: right;
}

.fv-02 {
  width: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transform-origin: right;
}

.fv-03 {
  width: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transform-origin: right;
}

.fv-04 {
  width: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transform-origin: right;
}

.fv-05 {
  width: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transform-origin: right;
}

.fv-01-active {
  animation: fv-anime-01 0.3s ease-in-out forwards;
}

.fv-02-active {
  animation: fv-anime-01 0.3s ease-in-out forwards;
  animation-delay: 0.2s;
}

.fv-03-active {
  animation: fv-anime-01 0.3s ease-in-out forwards 2s;
}

.fv-04-active {
  animation: fv-anime-01 0.3s ease-in-out forwards 2.2s;
}

.fv-05-active {
  animation: fv-anime-01 0.3s ease-in-out forwards 2.4s;
}

@keyframes fv-anime-01 {
  0% {
    transform: translateX(-100%) scaleX(1);
  }
  60% {
    transform: translateX(0) scaleX(1);
  }
  70% {
    transform: translateX(0) scaleX(0.9);
  }
  100% {
    transform: translateX(0) scaleX(1);
  }
}
/* Margin Calc Set
===============================*/
/* MOVIE COPY SECTION
==============================*/
.movA-copy-01 {
  width: 100%;
  top: 4.5%;
}

.movA-copy-02 {
  width: 100%;
  top: 68%;
}

.movB-copy-01 {
  width: 100%;
  top: 0%;
}

.movB-copy-02 {
  width: 100%;
  top: 66%;
}

.movC-copy-01 {
  width: 100%;
  top: -3%;
}

.movC-copy-02 {
  width: 100%;
  top: 65.5%;
}

.movD-copy-01 {
  width: 100%;
  top: -1%;
}

.movD-copy-02 {
  width: 100%;
  top: 63.5%;
}

.movE-copy-01 {
  width: 100%;
  top: -4%;
}

.movE-copy-02 {
  width: 100%;
  top: 61.5%;
}

.mainA-gram {
  width: 45%;
  top: -14%;
  left: 50%;
}

.mainB-gram {
  top: -14.5%;
}

.mainC-gram {
  top: -17%;
}

.mainD-gram {
  top: -16.5%;
}

.mainE-gram {
  top: -12.5%;
  left: 5%;
}

.mainA-limited {
  width: 48.8%;
  top: -89%;
  left: 4%;
}

.mainB-limited {
  top: -73%;
}

.mainC-limited {
  top: -51%;
}

.mainD-limited {
  top: -69%;
}

.mainE-limited {
  top: -76%;
}

.mainC-fukidashi {
  width: 43%;
  top: -11%;
  left: 2%;
}

/* Margin Calc Set
===============================*/
/* 定番 TRANSITION-Y
================================*/
.opacity-active {
  opacity: 1;
  transition: 0.75s ease-in-out;
}

.trans-y-small {
  opacity: 0;
  transform: translateY(3%);
}

.trans-y-small-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 1s ease-in-out;
}

.trans-y {
  opacity: 0;
  transform: translateY(5%);
}

.trans-y-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 0.5s ease-in-out;
}

.trans-y-large {
  opacity: 0;
  transform: translateY(8%);
}

.trans-y-large-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 0.5s ease-in-out;
}

/* 定番 KEYFRAMES
================================*/
@keyframes slide-in-01 {
  0% {
    transform: translateX(-125%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes slide-in-02 {
  0% {
    transform: translateX(125%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.slide-in-wrap {
  overflow: hidden;
  opacity: 0;
}

.slide-in-wrap-active {
  animation: slide-in-01 0.3s ease-out forwards;
}

.slide-in-active {
  animation: slide-in-02 0.3s ease-out forwards;
}

@keyframes flash-step {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.flash-step {
  opacity: 0;
}

.flash-step-active {
  animation: flash-step 1s steps(1) infinite 0.8s;
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.flash {
  opacity: 0;
  animation: flash 1.5s ease-in-out infinite;
}

.flash-koma {
  animation: flash-koma 2s steps(1) infinite;
}

@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(0);
  }
}
.up-down {
  animation: up-down 3s ease-in-out alternate infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
@keyframes puru-rotate {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(0deg);
  }
}
.puru-active {
  animation: puru-rotate 2s ease-in-out forwards;
}

@keyframes pon {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes yuge {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.6);
  }
  100% {
    opacity: 0.7;
    filter: blur(0px);
    transform: scale(1);
  }
}
@keyframes yugeAlt {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.9);
  }
  70% {
    opacity: 0.5;
    filter: blur(0px);
  }
  100% {
    opacity: 0;
    filter: blur(0px);
    transform: scale(1.5);
  }
}
@keyframes boyoyon {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  20% {
    transform: scale(1.2);
    opacity: 1;
  }
  35% {
    transform: scale(0.92);
  }
  50% {
    transform: scale(1.04);
  }
  60% {
    transform: scale(0.99);
  }
  85% {
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.boyoyon {
  opacity: 0;
}

.boyoyon-active {
  animation: boyoyon 1.25s ease-out forwards;
}

@keyframes ban {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    transform: scale(1.12);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.ban {
  opacity: 0;
}

.ban-active {
  animation: ban 0.5s ease-in-out forwards;
}

/* ユニークアニメーション ここから
================================*/
/* オープニング
================================*/
.mv-phA {
  transform: translateX(40%);
  opacity: 0;
}

.mv-phB {
  transform: translateX(-40%);
  opacity: 0;
}

.mv-phA-active {
  transform: translateX(0%);
  transition: 0.3s ease-in-out 4.05s;
  opacity: 1;
}

.mv-phB-active {
  transform: translateX(0%);
  transition: 0.3s ease-in-out 4.25s;
  opacity: 1;
}

.mv-h1-img {
  opacity: 0;
}

.mv-h1-img-active {
  animation: op-h1 1s ease-in-out forwards 4.5s;
}
.mv-h1-img-active:nth-child(2) {
  animation-delay: 4.55s;
}
.mv-h1-img-active:nth-child(3) {
  animation-delay: 4.6s;
}
.mv-h1-img-active:nth-child(4) {
  animation-delay: 4.65s;
}
.mv-h1-img-active:nth-child(5) {
  animation-delay: 4.75s;
}
.mv-h1-img-active:nth-child(6) {
  animation-delay: 4.85s;
}

@keyframes op-h1 {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  40% {
    transform: translateY(-12%); /* 上に跳ねる */
    opacity: 1;
  }
  80% {
    transform: translateY(3%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* イントロコピー
================================*/
.introA, .introB, .introC, .introD {
  width: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transform-origin: right;
}

.introA-active, .introB-active, .introC-active, .introD-active {
  animation: fv-anime-02 0.5s ease-in-out forwards;
}

@keyframes fv-anime-02 {
  0% {
    transform: translateX(-100%) scaleX(1);
  }
  60% {
    transform: translateX(0) scaleX(1);
  }
  70% {
    transform: translateX(0) scaleX(0.9);
  }
  100% {
    transform: translateX(0) scaleX(1);
  }
}
/* 縮小 → 拡大 汎用（pon）
================================*/
.pon {
  opacity: 0;
}

.pon-active {
  animation: pon 0.3s ease-in-out forwards;
}

/* 拡大 → 縮小 汎用
================================*/
.toSmall-120 {
  transform: scale(1.8);
  transform-origin: center 75%;
  opacity: 0;
}

.toSmall-120-active {
  transform: scale(1);
  transition: 0.3s;
  opacity: 1;
}

/* 回転して出現　汎用
================================*/
.ankerA-arrow {
  transform-origin: left bottom;
  transform: rotate(59deg);
}

.ankerB-arrow {
  transform-origin: right bottom;
  transform: rotate(-59deg);
}

.arrowAnime-active {
  transform: rotate(0deg);
  opacity: 1;
  transition: 0.2s;
}

.rotateL {
  transform-origin: left bottom;
  transform: rotate(59deg);
  opacity: 0;
}

.rotateR {
  transform-origin: right bottom;
  transform: rotate(-59deg);
  opacity: 0;
}

.rotate-active {
  transform: rotate(0deg);
  opacity: 1;
  transition: 0.2s;
}

/* イントロ コピー
================================*/
/* メインA
================================*/
.mainA-copyL01 {
  transform: translate(-40%, -15%) rotate(-15deg);
  opacity: 0;
}

.mainA-copyL02 {
  transform: translate(40%, -15%) rotate(15deg);
  opacity: 0;
}

/* メインB
================================*/
.mainB-copyL01 {
  transform: translate(40%, -15%);
  opacity: 0;
}

.mainB-copyL02 {
  transform: translate(40%, -15%);
  opacity: 0;
}

/* メインC
================================*/
.mainC-copyL01 {
  transform: translate(-40%, 15%) rotate(-15deg);
  opacity: 0;
}

.mainC-copyL02 {
  transform: translate(-40%, 15%) rotate(15deg);
  opacity: 0;
}

/* メインD
================================*/
.mainD-copyL01 {
  transform: translate(-40%, 15%);
  opacity: 0;
}

.mainD-copyL02 {
  transform: translate(-40%, 15%);
  opacity: 0;
}

/* メインE
================================*/
.mainE-copyL01 {
  transform: translate(-20%, 10%) rotate(-20deg);
  opacity: 0;
}

.mainE-copyL02 {
  transform: translate(20%, 10%) rotate(20deg);
  opacity: 0;
}

.mainE-copyL03 {
  transform: translate(-20%, -10%) rotate(20deg);
  opacity: 0;
}

.mainE-copyL04 {
  transform: translate(20%, -10%) rotate(-20deg);
  opacity: 0;
}

.main-copy-default {
  transform: translate(0) rotate(0);
  transition: 0.2s ease-in-out;
  opacity: 1;
}

/* サイドメニューA
================================*/
.sideA-copyL {
  transform: translate(-40%, -20%) rotate(15deg);
  opacity: 0;
}

.sideA-copyL-active {
  transform: translate(0%, 0%) rotate(0deg);
  transition: 0.2s ease-in-out;
  opacity: 1;
}

.sideA-copyR {
  transform: translate(40%, -20%) rotate(-15deg);
  opacity: 0;
}

.sideA-copyR-active {
  transform: translate(0%, 0%) rotate(0deg);
  transition: 0.2s ease-in-out;
  opacity: 1;
}

/* サイドメニューC
================================*/
.sideC-copy {
  transform: translate(-40%, 15%);
  opacity: 0;
}

.sideC-copy-active {
  transform: translate(0%, 0%);
  transition: 0.2s ease-in-out;
  opacity: 1;
}

/* Media Query
===============================*/
/* Margin Calc Set
===============================*/
/* LP Common Style
===============================*/
img {
  width: 100%;
  height: auto;
}

.abs {
  position: absolute;
}

.abs-def {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.rel {
  position: relative;
}

.sticky {
  position: sticky;
}

.mt-1 {
  margin-top: -1px;
}

.opacity {
  opacity: 0;
}

.zeroA {
  margin: 0 auto;
}

.block {
  display: block;
}

.overflow {
  overflow-x: clip;
}

/* Delay Set
===============================*/
.delay-005 {
  transition-delay: 0.05s;
  animation-delay: 0.05s;
}

.delay-01 {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-015 {
  transition-delay: 0.15s;
  animation-delay: 0.15s;
}

.delay-02 {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-025 {
  transition-delay: 0.25s;
  animation-delay: 0.25s;
}

.delay-03 {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-035 {
  transition-delay: 0.35s;
  animation-delay: 0.35s;
}

.delay-04 {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-045 {
  transition-delay: 0.45s;
  animation-delay: 0.45s;
}

.delay-05 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-055 {
  transition-delay: 0.55s;
  animation-delay: 0.55s;
}

.delay-06 {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-07 {
  transition-delay: 0.7s;
  animation-delay: 0.7s;
}

.delay-08 {
  transition-delay: 0.8s;
  animation-delay: 0.8s;
}

.delay-10 {
  transition-delay: 1s;
  animation-delay: 1s;
}

.delay-13 {
  transition-delay: 1.3s;
  animation-delay: 1.3s;
}

.delay-15 {
  transition-delay: 1.5s;
  animation-delay: 1.5s;
}

/* バックグラウンド 設定
===============================*/
.back-red {
  background-color: red;
  background-image: url(/lp/2025_kotoshimogulliver/images/bg_red.png);
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .back-red {
    overflow-x: clip;
  }
}

.back-black {
  background-image: url(/lp/2025_kotoshimogulliver/images/bg_black.jpg);
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .back-black {
    overflow-x: clip;
  }
}

.back-black-02 {
  background-color: #000000;
  background-image: url(/lp/2025_kotoshimogulliver/images/bg_black_02.png);
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .back-black-02 {
    overflow-x: clip;
  }
}

body {
  overflow-x: clip;
}
@media screen and (max-width: 600px) {
  body {
    overflow-x: auto;
  }
}

/* ビデオタグ汎用
===============================*/
.movie-box {
  overflow-x: clip;
  width: 100%;
  -webkit-mask-image: url(/lp/2025_kotoshimogulliver/images/movie_mask.png);
          mask-image: url(/lp/2025_kotoshimogulliver/images/movie_mask.png);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  margin-bottom: 40px;
}
@media screen and (max-width: 1535px) {
  .movie-box {
    margin-bottom: calc(40px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .movie-box {
    margin-bottom: calc(40 * 0.625 / 375 * 100vw);
  }
}
.movie-box video {
  width: 100%;
  height: auto;
}
.movie-box .mov-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(229, 0, 18, 0.7);
}
.movie-box .mov-modal .movie-abs {
  position: absolute;
  top: 25%;
  left: 0;
}
.movie-box .mov-modal-active {
  transform: translateY(-100%);
  transition: 0.5s ease-in-out;
  transition-delay: 0.95;
}

#movC {
  transform: translateY(-11%);
}

/* mv
===============================*/
.sec-mv {
  height: 1090px;
}
@media screen and (max-width: 1535px) {
  .sec-mv {
    height: calc(1090px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-mv {
    height: calc(1090 * 0.625 / 375 * 100vw);
  }
}
.sec-mv .mv-phA {
  width: 110%;
  top: 9%;
  left: 2.5%;
}
.sec-mv .mv-phB {
  width: 110%;
  top: 55%;
  left: -8.5%;
}
.sec-mv .mv-h1 {
  width: 103%;
  top: 37%;
  left: 0%;
}

/* main
===============================*/
.main-h2 {
  margin-bottom: 100px;
}
@media screen and (max-width: 1535px) {
  .main-h2 {
    margin-bottom: calc(100px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .main-h2 {
    margin-bottom: calc(100 * 0.625 / 375 * 100vw);
  }
}

/* mainA
===============================*/
.sec-mainA {
  padding-bottom: 180px;
}
@media screen and (max-width: 1535px) {
  .sec-mainA {
    padding-bottom: calc(180px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-mainA {
    padding-bottom: calc(180 * 0.625 / 375 * 100vw);
  }
}
.sec-mainA .mainA-ph .mainA-ph-img {
  width: 117%;
  transform: translateX(-8.5%);
}
.sec-mainA .mainA-ph .mainE-ph-img {
  width: 135%;
  transform: translateX(-13.5%);
}

.sec-mainE {
  padding-bottom: 30px;
}
@media screen and (max-width: 1535px) {
  .sec-mainE {
    padding-bottom: calc(30px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-mainE {
    padding-bottom: calc(30 * 0.625 / 375 * 100vw);
  }
}

/* rice
===============================*/
.rice-box {
  overflow-x: clip;
}
.rice-box .rice-copyB {
  left: 0;
  bottom: 15%;
}
.rice-box .rice-limited {
  width: 48.8%;
  top: 87%;
  left: 5%;
}

.back-red {
  z-index: 100;
  margin-top: -3px;
}

/* sideA
===============================*/
.sec-sideA {
  padding-top: 140px;
}
@media screen and (max-width: 1535px) {
  .sec-sideA {
    padding-top: calc(140px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sideA {
    padding-top: calc(140 * 0.625 / 375 * 100vw);
  }
}
.sec-sideA .sideA-ph {
  padding-bottom: 100px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-sideA .sideA-ph {
    padding-bottom: calc(100px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sideA .sideA-ph {
    padding-bottom: calc(100 * 0.625 / 375 * 100vw);
  }
}
.sec-sideA .sideA-ph .sideA-ph-img {
  width: 133%;
  transform: translateX(-15%);
  margin-top: -40px;
}
@media screen and (max-width: 1535px) {
  .sec-sideA .sideA-ph .sideA-ph-img {
    padding-top: calc(-40px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sideA .sideA-ph .sideA-ph-img {
    padding-top: calc(-40 * 0.625 / 375 * 100vw);
  }
}
.sec-sideA .sideA-ph .sideA-typo-01 {
  width: 82.1%;
  top: 57%;
}
.sec-sideA .sideA-ph .sideA-typo-02 {
  width: 56.1%;
  top: 75%;
  right: 0;
}
.sec-sideA .sideA-name .sideA-limited {
  width: 48.8%;
  left: 4%;
  top: -1%;
}

/* sideB
===============================*/
.sec-sideB .sideB-ph {
  margin-top: -130px;
}
@media screen and (max-width: 1535px) {
  .sec-sideB .sideB-ph {
    margin-top: calc(-130px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sideB .sideB-ph {
    margin-top: calc(-130 * 0.625 / 375 * 100vw);
  }
}
.sec-sideB .sideB-ph .sideB-typo-01 {
  width: 58%;
  top: 70%;
  left: 5%;
}
.sec-sideB .sideB-ph .sideB-typo-02 {
  width: 50.9%;
  top: 79%;
  right: 5%;
}
.sec-sideB .sideB-limited {
  width: 48.8%;
  left: 4%;
}

/* sideC
===============================*/
.sec-sideC {
  overflow-x: clip;
}
.sec-sideC .sideC-ph {
  margin-top: -130px;
}
@media screen and (max-width: 1535px) {
  .sec-sideC .sideC-ph {
    margin-top: calc(-130px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sideC .sideC-ph {
    margin-top: calc(-130 * 0.625 / 375 * 100vw);
  }
}
.sec-sideC .sideC-ph .sideC-copy-01 {
  width: 45%;
  top: 58%;
  left: 0%;
}
.sec-sideC .sideC-ph .sideC-copy-02 {
  width: 97.9%;
  top: 65%;
  left: 0;
}
.sec-sideC .sideC-limited {
  width: 48.8%;
  left: 4%;
  top: -27%;
}

/* sideD
===============================*/
.sec-sideD .sideD-ph {
  margin-top: -100px;
}
@media screen and (max-width: 1535px) {
  .sec-sideD .sideD-ph {
    margin-top: calc(-100px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sideD .sideD-ph {
    margin-top: calc(-100 * 0.625 / 375 * 100vw);
  }
}
.sec-sideD .sideD-ph .sideD-copy-01 {
  width: 83.2%;
  top: 66.3%;
  left: 8%;
}
.sec-sideD .sideC-limited {
  width: 48.8%;
  left: 4%;
  top: -27%;
}

/* TV-CM
===============================*/
.sec-cm {
  margin-bottom: 87px;
}
@media screen and (max-width: 1535px) {
  .sec-cm {
    margin-bottom: calc(87px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cm {
    margin-bottom: calc(87 * 0.625 / 375 * 100vw);
  }
}
.sec-cm .youtube {
  width: 100%;
  height: 330px;
}
@media screen and (max-width: 1535px) {
  .sec-cm .youtube {
    height: 257px;
  }
}
@media screen and (max-width: 600px) {
  .sec-cm .youtube {
    height: 55vw;
  }
}

/* 店舗検索
===============================*/
.sec-anker {
  padding-bottom: 220px;
}
@media screen and (max-width: 1535px) {
  .sec-anker {
    padding-bottom: calc(220px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-anker {
    padding-bottom: calc(220 * 0.625 / 375 * 100vw);
  }
}
.sec-anker .ankerA {
  width: 100%;
}
.sec-anker .ankerB {
  width: 100%;
  margin-top: 85px;
}
@media screen and (max-width: 1535px) {
  .sec-anker .ankerB {
    margin-top: calc(85px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-anker .ankerB {
    margin-top: calc(85 * 0.625 / 375 * 100vw);
  }
}
.sec-anker .ankerA-btn {
  width: 44.6%;
  top: 0;
  left: 12%;
}
.sec-anker .ankerA-arrow {
  width: 40%;
  bottom: 27%;
  left: 45%;
}
.sec-anker .ankerB-btn {
  width: 44.6%;
  top: -20%;
}
.sec-anker .ankerB-arrow {
  width: 40%;
  top: 21%;
  left: 11%;
  z-index: 1;
}/*# sourceMappingURL=style.css.map */