:root {
  --viewport-width: min(100vw, 1600px);
  --b: calc(var(--viewport-width) / 160);
}

@media screen and (max-width: 550px) {
  :root {
    --viewport-width: max(100vw, 550px);
    --b: calc(var(--viewport-width) / 55);
  }
}
:root {
  --commit-gap: max(4.5rem, 30px);
}

.fv {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100svh;
}
@media screen and (max-width: 550px) {
  .fv {
    display: block;
    padding-top: 20vh;
  }
}
.fv__title {
  padding-left: 7.5%;
}
@media screen and (max-width: 550px) {
  .fv__title {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.fv__title h1 {
  opacity: 0;
  transition: all 1s ease-out;
  filter: blur(20px);
}
@media screen and (max-width: 550px) {
  .fv__title h1 {
    font-size: 36px;
  }
}
.fv__title > span {
  display: block;
  font-size: max(3.2rem, 26px);
  margin-top: max(1rem, 10px);
  opacity: 0;
  transition: all 1s ease-out;
  filter: blur(20px);
}
@media screen and (max-width: 550px) {
  .fv__title > span {
    font-size: 26px;
  }
}
.fv__title.loaded h1,
.fv__title.loaded span {
  opacity: 1;
  filter: blur(0);
}
.fv__nav {
  position: absolute;
  right: 10%;
  bottom: 5%;
  text-align: right;
}
@media screen and (max-width: 550px) {
  .fv__nav {
    right: 5%;
  }
}
.fv__nav ul {
  gap: 5rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 550px) {
  .fv__nav ul {
    gap: 20px;
  }
}
.fv__nav ul li {
  opacity: 0;
  transform: translateX(-50%);
  transition: all 1s ease-out;
  letter-spacing: 0.8em;
}
.fv__nav ul li:nth-of-type(1) {
  transition-delay: 0.6s;
}
.fv__nav ul li:nth-of-type(2) {
  transition-delay: 0.8s;
}
.fv__nav ul li:nth-of-type(3) {
  transition-delay: 1s;
}
.fv__nav ul li:nth-of-type(4) {
  transition-delay: 1.2s;
}
.fv__nav ul li a {
  position: relative;
  display: inline-block;
  transition: color 0.3s linear;
}
.fv__nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #FF6C00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}
.fv__nav ul li a:hover {
  color: #FF6C00;
}
.fv__nav ul li a:hover::before {
  transform: scaleX(1);
}
.fv__nav.loaded ul li {
  opacity: 1;
  transform: translateX(0);
  letter-spacing: 0.1em;
}

.intro {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 550px) {
  .intro {
    margin-top: 70px;
  }
}
.intro__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1000px) {
  .intro__inner {
    gap: 50px;
    flex-direction: column;
  }
}
.intro__text p {
  line-height: 2.5;
  filter: blur(10px);
  transition: all 1s ease-out;
}
.intro__text p.active {
  filter: blur(0);
}
.intro__popbox {
  display: flex;
  align-self: end;
  align-items: end;
  flex-direction: column;
  gap: max(7rem, 30px);
}
@media screen and (max-width: 550px) {
  .intro__popbox {
    gap: 30px;
  }
}

.commit {
  position: relative;
  background: #191b29;
  z-index: 0;
  padding-bottom: max(30rem, 120px);
}
@media screen and (max-width: 550px) {
  .commit {
    margin-top: 80px;
    padding-bottom: 120px;
  }
}
.commit__inner {
  display: grid;
  overflow: hidden;
  height: 100vh;
}
@media screen and (max-width: 550px) {
  .commit__inner {
    height: 100%;
  }
}
.commit__inner__list {
  display: flex;
  align-items: center;
  gap: var(--commit-gap);
  will-change: transform;
}
@media screen and (max-width: 550px) {
  .commit__inner__list {
    padding: 75px 0;
    flex-direction: column;
  }
}
.commit__inner__list--item {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #191b29;
  width: max(69rem, 500px);
  border-radius: 50%;
  aspect-ratio: 1/1;
  opacity: 0.45;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 550px) {
  .commit__inner__list--item {
    width: 90%;
    min-width: 90%;
  }
}
.commit__inner__list--item.orange {
  background: linear-gradient(to bottom, #d57321, #441a03);
}
.commit__inner__list--item.orange .btn::before {
  background: #0A4F90;
}
.commit__inner__list--item.orange .btn:hover span {
  color: #0A4F90;
}
.commit__inner__list--item .inner {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: max(50%, 265px);
  gap: max(5rem, 10px);
}
@media screen and (max-width: 550px) {
  .commit__inner__list--item .inner {
    gap: 10px;
    width: max(50%, 265px);
  }
}
.commit__inner__list--item .inner h3 {
  font-size: max(3.3rem, 26px);
  letter-spacing: 0.05em;
  line-height: 2;
  align-self: center;
}
@media screen and (max-width: 550px) {
  .commit__inner__list--item .inner h3 {
    font-size: 24px;
    line-height: 1.5;
  }
}
.commit__inner__list--item .inner .btn {
  margin: auto;
  margin-top: 20px;
  padding-bottom: max(1rem, 5px);
}
@media screen and (max-width: 550px) {
  .commit__inner__list--item .inner .btn {
    padding-bottom: 5px;
  }
}
.commit__inner__list--item .inner .btn.active {
  width: 50%;
}
.commit__inner__list--item .inner .btn span.text {
  font-family: YakuHanMP, "Cinzel", "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: max(1.4rem, 12px);
}
@media screen and (max-width: 550px) {
  .commit__inner__list--item .inner .btn span.text {
    font-size: 12px;
  }
}
.commit__detail--wrapper {
  display: flex;
  position: relative;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .commit__detail--wrapper {
    gap: 75px;
    flex-direction: column;
  }
}
.commit__detail__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  height: auto;
  width: calc(50% - 5rem);
  padding: 8rem 11rem;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .commit__detail__inner {
    width: 100%;
  }
  .commit__detail__inner:nth-of-type(1) {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 550px) {
  .commit__detail__inner {
    padding: 50px 20px;
  }
  .commit__detail__inner:nth-of-type(1) {
    padding-bottom: 100px;
  }
}
.commit__detail__inner h4 {
  font-size: max(3.3rem, 26px);
  line-height: 1.5;
}
@media screen and (max-width: 550px) {
  .commit__detail__inner h4 {
    font-size: 26px;
  }
}
.commit__detail__circle {
  display: grid;
  place-items: center;
  position: absolute;
  background: #fff;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
}
.commit__detail__circle h5 {
  color: #191b29;
  text-align: center;
  padding: max(3.5rem, 20px);
  font-size: max(2.7rem, 24px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .commit__detail__circle h5 {
    padding: 30px;
  }
}
@media screen and (max-width: 550px) {
  .commit__detail__circle h5 {
    font-size: 24px;
  }
}
.commit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 550px) {
  .commit__bg {
    display: none;
  }
}
.commit__bg img:not(:first-of-type) {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.reason {
  position: relative;
  z-index: 0;
  background: #191b29;
}
.reason__wrapper__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: -1;
}
.reason__wrapper__bg > img {
  width: 100%;
  height: 100%;
}
.reason__wrapper__inner {
  padding-top: max(15rem, 80px);
  padding-bottom: max(15rem, 80px);
}
@media screen and (max-width: 550px) {
  .reason__wrapper__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.reason__wrapper__inner .textBox {
  display: flex;
  position: relative;
  align-items: center;
  gap: max(13.5rem, 100px);
}
@media screen and (max-width: 1000px) {
  .reason__wrapper__inner .textBox {
    gap: max(10rem, 30px);
  }
}
@media screen and (max-width: 768px) {
  .reason__wrapper__inner .textBox {
    gap: 80px;
    flex-direction: column;
  }
}
.reason__wrapper__inner .textBox h3 {
  font-size: max(3.3rem, 28px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: max(2rem, 20px);
}
@media screen and (max-width: 550px) {
  .reason__wrapper__inner .textBox h3 {
    font-size: 28px;
  }
}
.reason__wrapper__inner .textBox p {
  line-height: 3;
}
.reason__wrapper__inner .textBox button {
  margin-top: max(10rem, 50px);
  margin-left: auto;
}
@media screen and (max-width: 550px) {
  .reason__wrapper__inner .textBox button {
    margin-top: 50px;
  }
}

.popContainer {
  display: none;
  position: fixed;
  place-items: center;
  pointer-events: none;
  inset: 0;
  opacity: 0;
  width: 100%;
  transition: all 1s ease-out;
  z-index: 1000;
}
@media screen and (min-width: 1600px) {
  .popContainer {
    left: 50%;
    transform: translateX(-50%);
  }
}
.popContainer.loaded {
  display: grid;
}
.popContainer.active {
  opacity: 1;
  background: rgba(25, 27, 41, 0.9);
}
.popContainer#pop1 .popContainer__inner {
  width: min(60%, 1280px);
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .popContainer#pop1 .popContainer__inner {
    width: 80%;
  }
}
@media screen and (max-width: 550px) {
  .popContainer#pop1 .popContainer__inner {
    width: 90%;
  }
}
.popContainer#pop1 .popContainer__inner h2 {
  font-size: max(2.5rem, 23px);
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 550px) {
  .popContainer#pop1 .popContainer__inner h2 {
    font-size: 23px;
  }
}
.popContainer#pop1 .popContainer__inner .imageBox {
  position: relative;
  margin-top: max(3rem, 30px);
}
.popContainer#pop1 .popContainer__inner .imageBox span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: max(4rem, 30px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  background: rgba(25, 27, 41, 0.8);
}
@media screen and (max-width: 550px) {
  .popContainer#pop1 .popContainer__inner .imageBox span {
    font-size: 30px;
  }
}
.popContainer#pop1 .popContainer__inner .imageBox video,
.popContainer#pop1 .popContainer__inner .imageBox img {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 550px) {
  .popContainer#pop1 .popContainer__inner .imageBox video,
  .popContainer#pop1 .popContainer__inner .imageBox img {
    margin-top: 30px;
  }
}
.popContainer#pop2 .popContainer__inner {
  margin: auto;
  position: relative;
  width: min(80%, 1600px);
  max-height: 80svh;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.popContainer#pop2 .popContainer__inner::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1300px) {
  .popContainer#pop2 .popContainer__inner {
    height: 80svh;
  }
}
@media screen and (max-width: 550px) {
  .popContainer#pop2 .popContainer__inner {
    width: 90%;
    height: 85svh;
  }
}
.popContainer#pop2 .popContainer__inner .pop__btn {
  display: grid;
  background: #191b29;
  position: absolute;
  place-items: center;
  z-index: 10;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  aspect-ratio: 1/1;
  transform: translate(50%, 50%);
}
@media screen and (max-width: 550px) {
  .popContainer#pop2 .popContainer__inner .pop__btn {
    right: 50%;
  }
}
.popContainer#pop2 .popContainer__inner .pop__btn button {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: max(11.5rem, 80px);
  height: auto;
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 550px) {
  .popContainer#pop2 .popContainer__inner .pop__btn button {
    width: 80px;
  }
}
.popContainer#pop2 .popContainer__inner .pop__btn button span {
  line-height: 1.5;
  font-family: YakuHanMP, "Cinzel", "Zen Old Mincho", "Noto Serif JP", serif;
}
.popContainer#pop2 .popContainer__inner .pop__btn button span.icon {
  display: block;
  text-align: center;
  transform-origin: center;
  font-size: max(5rem, 35px);
  font-weight: 400;
  line-height: 0.5;
  transform: rotate(45deg);
}
@media screen and (max-width: 550px) {
  .popContainer#pop2 .popContainer__inner .pop__btn button span.icon {
    font-size: 35px;
  }
}
.popContainer#pop2 .popContainer__inner__head {
  padding: 2% 5%;
  height: auto;
  background: linear-gradient(to right, #191b29, #141e39);
}
.popContainer#pop2 .popContainer__inner__head h2 {
  font-size: max(2.5rem, 23px);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 550px) {
  .popContainer#pop2 .popContainer__inner__head h2 {
    font-size: 23px;
  }
}
.popContainer#pop2 .popContainer__inner__body {
  height: 90%;
  padding: 5% 5%;
  background: #fff;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.popContainer#pop2 .popContainer__inner__body::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .popContainer#pop2 .popContainer__inner__body {
    padding: 5%;
    height: 92%;
    padding-bottom: 10%;
  }
}
@media screen and (max-width: 550px) {
  .popContainer#pop2 .popContainer__inner__body {
    height: 80%;
    padding-bottom: 20%;
  }
}
.popContainer#pop2 .popContainer__inner__body .betweenBox {
  display: grid;
  position: relative;
  place-items: center;
  height: max(6rem, 40px);
  margin: 10px auto;
  width: calc(100% - (16.6666666667% - 12.5px));
}
@media screen and (max-width: 1300px) {
  .popContainer#pop2 .popContainer__inner__body .betweenBox {
    width: calc(100% - (33.3333333333% - 15px));
  }
}
@media screen and (max-width: 768px) {
  .popContainer#pop2 .popContainer__inner__body .betweenBox {
    height: 40px;
    width: calc(100% - (50% - 10px));
  }
}
.popContainer#pop2 .popContainer__inner__body .betweenBox::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  transform: translateY(-2px);
  height: 50%;
  background-size: 4px 4px;
  background-repeat: space;
  background-position: bottom;
  background-image: radial-gradient(#191b29, 30%, transparent 30%);
}
.popContainer#pop2 .popContainer__inner__body .betweenBox::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 50%;
  transform: translateY(2px);
  background-size: 4px 4px;
  background-repeat: space;
  background-position: bottom;
  background-image: radial-gradient(#191b29, 30%, transparent 30%);
}
.popContainer#pop2 .popContainer__inner__body .betweenBox span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.popContainer#pop2 .popContainer__inner__body .betweenBox span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  width: 100%;
  transform: translateY(-50%);
  background-size: 4px 4px;
  background-repeat: space;
  background-position: bottom;
  background-image: radial-gradient(#191b29, 30%, transparent 30%);
}
.popContainer#pop2 .popContainer__inner__body .betweenBox span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 15px solid #191b29;
}
@media screen and (max-width: 768px) {
  .popContainer#pop2 .popContainer__inner__body .betweenBox span::before {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #191b29;
  }
}
.popContainer#pop2 .popContainer__inner__body--wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
@media screen and (max-width: 1300px) {
  .popContainer#pop2 .popContainer__inner__body--wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .popContainer#pop2 .popContainer__inner__body--wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 550px) {
  .popContainer#pop2 .popContainer__inner__body--wrapper {
    gap: 10px;
  }
}
.popContainer#pop2 .popContainer__inner__body--wrapper .betweenBox {
  display: none;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .popContainer#pop2 .popContainer__inner__body--wrapper .betweenBox {
    grid-column: 1/4;
  }
  .popContainer#pop2 .popContainer__inner__body--wrapper .betweenBox.xl {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .popContainer#pop2 .popContainer__inner__body--wrapper .betweenBox {
    grid-column: 1/3;
  }
  .popContainer#pop2 .popContainer__inner__body--wrapper .betweenBox.xl {
    display: none;
  }
  .popContainer#pop2 .popContainer__inner__body--wrapper .betweenBox.md {
    display: block;
  }
}
.popContainer#pop2 .popContainer__inner__body--wrapper .imageBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  height: auto;
}
@media screen and (max-width: 550px) {
  .popContainer#pop2 .popContainer__inner__body--wrapper .imageBox {
    gap: 10px;
  }
}
.popContainer#pop2 .popContainer__inner__body--wrapper .imageBox:not(:last-of-type) .imageBox__inner {
  position: relative;
}
.popContainer#pop2 .popContainer__inner__body--wrapper .imageBox:not(:last-of-type) .imageBox__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  border-left: 15px solid #191b29;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  transform: translateX(100%) translateY(-50%);
}
@media screen and (max-width: 550px) {
  .popContainer#pop2 .popContainer__inner__body--wrapper .imageBox:not(:last-of-type) .imageBox__inner::after {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #191b29;
  }
}
@media screen and (max-width: 1300px) {
  .popContainer#pop2 .popContainer__inner__body--wrapper .imageBox:nth-of-type(3) .imageBox__inner::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .popContainer#pop2 .popContainer__inner__body--wrapper .imageBox:nth-of-type(even) .imageBox__inner::after {
    display: none;
  }
  .popContainer#pop2 .popContainer__inner__body--wrapper .imageBox:nth-of-type(odd) .imageBox__inner::after {
    display: block;
  }
}
.popContainer#pop2 .popContainer__inner__body--wrapper .imageBox > span {
  color: #191b29;
  display: block;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.popContainer#pop3 .popContainer__inner, .popContainer#pop4 .popContainer__inner {
  position: relative;
  background: #fff;
  width: min(80%, 1600px);
  padding: 5% 2.5%;
}
@media screen and (max-width: 550px) {
  .popContainer#pop3 .popContainer__inner, .popContainer#pop4 .popContainer__inner {
    width: 90%;
    padding: 10% 5%;
  }
}
.popContainer#pop3 .popContainer__inner ul, .popContainer#pop4 .popContainer__inner ul {
  gap: max(3rem, 30px);
  display: flex;
  max-height: 80svh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.popContainer#pop3 .popContainer__inner ul::-webkit-scrollbar, .popContainer#pop4 .popContainer__inner ul::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1000px) {
  .popContainer#pop3 .popContainer__inner ul, .popContainer#pop4 .popContainer__inner ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 550px) {
  .popContainer#pop3 .popContainer__inner ul, .popContainer#pop4 .popContainer__inner ul {
    gap: 30px;
  }
}
.popContainer#pop3 .popContainer__inner ul li, .popContainer#pop4 .popContainer__inner ul li {
  flex: 1;
}
.popContainer#pop3 .popContainer__inner ul li .imageBox, .popContainer#pop4 .popContainer__inner ul li .imageBox {
  aspect-ratio: 119/80;
}
.popContainer#pop3 .popContainer__inner ul li .imageBox img, .popContainer#pop4 .popContainer__inner ul li .imageBox img {
  width: 100%;
  aspect-ratio: 119/80;
}
.popContainer#pop3 .popContainer__inner ul li h3, .popContainer#pop4 .popContainer__inner ul li h3 {
  color: #191b29;
  display: block;
  font-size: max(2.5rem, 20px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 15px 0;
}
@media screen and (max-width: 550px) {
  .popContainer#pop3 .popContainer__inner ul li h3, .popContainer#pop4 .popContainer__inner ul li h3 {
    font-size: 20px;
  }
}
.popContainer#pop3 .popContainer__inner ul li h3 span, .popContainer#pop4 .popContainer__inner ul li h3 span {
  color: #141e39;
}
.popContainer#pop3 .popContainer__inner ul li p, .popContainer#pop4 .popContainer__inner ul li p {
  color: #191b29;
}
.popContainer#pop3 .pop__btn, .popContainer#pop4 .pop__btn {
  display: grid;
  background: #191b29;
  position: absolute;
  place-items: center;
  z-index: 10;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  aspect-ratio: 1/1;
  transform: translate(50%, 50%);
}
@media screen and (max-width: 550px) {
  .popContainer#pop3 .pop__btn, .popContainer#pop4 .pop__btn {
    right: 50%;
  }
}
.popContainer#pop3 .pop__btn button, .popContainer#pop4 .pop__btn button {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: max(11.5rem, 80px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 550px) {
  .popContainer#pop3 .pop__btn button, .popContainer#pop4 .pop__btn button {
    width: 80px;
  }
}
.popContainer#pop3 .pop__btn button span, .popContainer#pop4 .pop__btn button span {
  line-height: 1.5;
  letter-spacing: 0;
  font-family: YakuHanMP, "Cinzel", "Zen Old Mincho", "Noto Serif JP", serif;
}
.popContainer#pop3 .pop__btn button span.icon, .popContainer#pop4 .pop__btn button span.icon {
  display: block;
  text-align: center;
  transform-origin: center;
  font-size: max(5rem, 35px);
  font-weight: 400;
  line-height: 0.5;
  transform: rotate(45deg);
}
@media screen and (max-width: 550px) {
  .popContainer#pop3 .pop__btn button span.icon, .popContainer#pop4 .pop__btn button span.icon {
    font-size: 35px;
  }
}/*# sourceMappingURL=front.css.map */