@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.9;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slidein {
  from {
    top: 3rem;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes hover {
  from {
    top: 5px;
  }
  to {
    top: -5px;
  }
}
*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  font-size: clamp(16px, 1.4vw, 18px);
}
@media screen and (max-width: 768px) {
  html {
    font-size: clamp(14px, 3.8vw, 16px);
  }
}

body {
  background-color: #ffffff;
  color: #0D0B07;
  font-family: "Franklin Gothic Medium", "Arial", Helvetica, sans-serif;
  font-weight: 300;
  line-height: 2.4;
  letter-spacing: 1.2;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
}

b {
  color: #fca311;
}

i {
  text-decoration: underline #d1d1d1;
  font-style: normal;
}

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

.pc-only {
  display: none;
}
@media only screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.section-border-triangle {
  position: absolute;
  top: 0;
  left: calc(50vw - 12vw);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.4vw 12vw 0 12vw;
  border-color: #ffffff transparent transparent transparent;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .section-border-triangle {
    top: 0;
    left: calc(50vw - 32vw);
    border-width: 3.6vw 32vw 0 32vw;
  }
}

.talk--left, .talk--right {
  font-size: 1.2rem;
  position: relative;
  background: #e6e6e6;
  min-width: 40%;
  width: auto;
  padding: 10px 2em;
  margin: 0.85rem;
  border-radius: 12px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
}
.talk--left div:not(:first-child), .talk--right div:not(:first-child) {
  font-size: 0.9rem;
}
@media screen and (max-width: 768px) {
  .talk--left, .talk--right {
    font-size: 1rem;
    padding: 1rem;
  }
  .talk--left div:not(:first-child), .talk--right div:not(:first-child) {
    font-size: 0.8rem;
  }
}
.talk--left::before, .talk--right::before {
  content: "";
  position: absolute;
  visibility: visible;
  border: 1.5em solid transparent;
  border-top: 1.5em solid #e6e6e6;
}

.talk--right {
  text-align: right;
  float: right;
}
@media screen and (max-width: 768px) {
  .talk--right {
    text-align: left;
  }
}
.talk--right::before {
  top: 0.5em;
  right: -1em;
}
.talk--left {
  text-align: left;
  float: left;
}
.talk--left::before {
  top: 0.5em;
  left: -1em;
}

.table {
  border-collapse: collapse;
  text-align: center;
}

li {
  display: inline-block;
}

input {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  border: none;
  outline: none;
  border-radius: 2px;
}

.dl-button {
  background-color: #fca311;
  color: #ffffff;
  font-size: 1.1em;
  padding: 0.5em 1em;
  margin: 0.1em;
  border: none;
  border-radius: 1em;
  box-shadow: 2px 2px 8px -2px #bfbfbf;
  animation: blink 0.8s ease 0s infinite alternate;
  cursor: pointer;
  position: relative;
}
.dl-button a {
  color: #ffffff;
  text-decoration: none;
  text-align: center;
}
.dl-button:hover {
  opacity: 0.9;
  top: -1px;
}

.icon, .icon__cross, .icon__triangle, .icon__circle {
  margin: 0 auto;
  display: block;
}
.icon__circle {
  width: 1.4em;
}
.icon__triangle {
  width: 1.6em;
}
.icon__cross {
  width: 1.5em;
}
.icon__arrow {
  width: 1em;
  transform: rotate(90deg);
  transition: transform 0.2s;
  position: relative;
  bottom: 0.1em;
  margin-right: 10px;
}

.open .icon__arrow {
  transform: rotate(270deg);
}

.slidein {
  opacity: 0;
  position: relative;
  top: 3rem;
}
.slidein.animate {
  animation: slidein 2s forwards;
}

.fadein {
  opacity: 0;
}
.fadein.animate {
  animation: fadein 2s forwards;
}

.hover {
  position: relative;
}
.hover.animate {
  animation: hover 1s linear 0s infinite alternate;
}

/*# sourceMappingURL=common.css.map */
