@font-face {
  font-family: 'ArialRounded';
  font-display: swap;
  src: url('/fonts/ArialRounded/Arial_Rounded_MT.ttf')
    format('truetype');
}
@font-face {
  font-family: 'ArialRounded';
  font-display: swap;
  src: url('/fonts/ArialRounded/Arial-Rounded-MT-Bold.ttf')
    format('truetype');
  font-weight: bold;
}

body {
  margin: 0;
  font-family: 'ArialRounded', -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';

  font-weight: 300;
  -webkit-tap-highlight-color: transparent;
  position: relative;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* for iOS notch */
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

main {
  flex-grow: 1;
}

button,
input,
textarea {
  font-family: 'ArialRounded', -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

input:focus,
button:focus,
textarea:focus {
  outline: none;
}

h1,
h2 {
  margin-top: 34px;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 4px;
  line-height: 1.4em;
}

h1,
h2,
h3,
h4 {
  color: hsl(357, 50%, 22%);
  margin-top: 1.8rem;
  margin-bottom: 0em;
}

h1 {
  font-size: 34px;
}

table {
  font-size: 18px;
  line-height: 1.6em;
  color: hsl(357, 12%, 42%);
  margin: 12px 0px;
}

table td {
  padding: 3px 0px;
}

.shortcuts__table {
  padding-right: 12px;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #b0b0b0;
  margin: 12px 0px;
}

.shortcuts__table td {
  padding: 5px 12px;
  border: 1px solid #dfdfdf;
  color: hsl(357, 12%, 42%);
  font-size: 15px;
}

.shortcuts__table__header {
  background-color: #f8f8f8;
  font-weight: bold;
  padding-right: 12px;
}

.download__text {
  font-size: 14px;
  color: hsl(357, 12%, 42%);
  margin-top: 16px;
}

@media only screen and (max-height: 300px) {
  body {
    height: 100vh !important;
    overflow-y: hidden !important;
  }
}

@media only screen and (max-width: 680px) {
  h1,
  h2 {
    letter-spacing: -0.2px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
}

p {
  font-size: 18px;
  line-height: 1.6em;
  color: hsl(357, 12%, 42%);
}

@media only screen and (max-width: 680px) {
  p,
  li {
    font-size: 16px;
  }
  body::-webkit-scrollbar {
    display: none;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
}

ul {
  font-size: 18px;
  list-style: none;
  -webkit-padding-start: 24px;
}

ol {
  font-size: 18px;
  -webkit-padding-start: 24px;
}

li {
  line-height: 1.6rem;
  color: hsl(357, 12%, 42%);
  margin: 12px 0px;
}

strong {
  color: #735759;
  font-weight: bold;
}

.features__list li::before {
  color: hsl(357, 74%, 67%);
  content: '\2022'; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}

a {
  text-decoration: none !important;
  /* color: hsl(357, 74%, 67%); */
  /* color: rgb(186, 73, 73); */
  font-weight: bold;
  color: hsl(2, 66%, 58%);
}

.catchcopy__header:after {
  content: ''; /* This is necessary for the pseudo element to work. */
  display: block;
  /* margin: 0 auto; */
  width: 24px;
  padding-top: 8px;
  border-bottom: 4px solid #f05b56;
  opacity: 0.6;
}

.spinner__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  /* background-color: hsl(2, 84%, 64%); */
  /* background-color: hsl(2, 66%, 58%); */
  background: rgb(175 77 77);
}

.spinner__text {
  color: white;
  font-size: 20px;
  /* font-weight: bold; */
  margin-top: 0.8rem;
  animation: tenmetsulight infinite 0.4s;
  /* text-transform: uppercase; */
}

.spinner__img {
  width: 4.5rem;
  /* animation: tenmetsulight infinite 0.4s; */
  /* animation: slideup 0.8s ease-in-out; */
}

@keyframes tenmetsu {
  0% {
    opacity: 0.01;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.01;
  }
}

@keyframes tenmetsulight {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

@keyframes scaleup {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes expand {
  0% {
    transform: scale(1, 0.8);
    opacity: 0.1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}

@keyframes slideup {
  0% {
    transform: translateY(20px);
    opacity: 0.2;
  }
  60% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slideupslow {
  0% {
    transform: translateY(20px);
    opacity: 0.2;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slideleft {
  0% {
    /* transform: translateX(60px) scale(1.2); */
    transform: translateY(10px) scale(1.1);
    opacity: 0.2;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

@keyframes fadein {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

.container {
  max-width: 620px;
  margin: auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.header__wrapper {
  border-bottom: 1px solid #dfdfdf;
  padding: 16px 0px;
}

.header__brand_title {
  /* color: hsl(2, 84%, 64%); */
  /* color: hsl(2, 66%, 58%); */
  /* color: rgb(186, 73, 73); */
  align-items: center;
  display: flex;
  gap: 3px;
  color: #e65b57;

  font-size: 28px;
}

.header__brand_icon {
  width: 26px;
  margin-right: 4px;
}

.heroimage {
  margin-top: 30px;
}

.heroimage__title {
  display: block;
  margin-top: 50px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 680px) {
  .heroimage__title {
    margin-top: 20px;
    margin-bottom: 0px;
  }
  .header__brand_title {
    font-size: 20px;
  }
  .header__brand_icon {
    width: 20px;
  }
}

.heroimage__img {
  width: 220px;
}

.adsection__wrapper {
  display: flex;
  justify-content: space-around;
}

/**

	footer

*/

.footer {
  margin-top: 40px;
  border-top: 2px solid #efefef;
  text-align: center;
  padding-top: 30px;
  color: hsl(357, 12%, 42%);
  padding-bottom: 20px;
}

.footer__sitemap {
  margin-bottom: 14px;
}

.footer__sitemap > a {
  color: hsl(357, 12%, 42%);
  font-size: 14px;
  margin: 0px 4px;
}

.footer__snslinks {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.footer__snslinks img {
  background-color: #999;
  width: 28px;
  height: 28px;
  border-radius: 100px;
  padding: 6px;
  margin: 0px 6px;
  /* margin-bottom: 14px; */
}

.footer__me {
  margin-top: 10px;
  margin-bottom: 20px;
}

.footer__me a {
  opacity: 0.8;
}

.footer__snslink__ph {
  display: inline-block;
  background-color: #999;
  height: 28px;
  width: 28px;
  border-radius: 100px;
  padding: 6px;
  margin: 0px 4px;
}

.footer__snslink__ph a {
  color: white;
  font-size: 23px;
}

.footer__allrights {
  font-size: 12px;
  color: hsl(357, 8%, 60%);
}

/**

	privacy

*/

.privacy__title {
  margin-top: 40px;
  margin-bottom: 20px;
}

/**

	Facebook

*/

.facebook_like {
  background-color: hsl(357, 12%, 94%);
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: hidden;
}

/**
* Maker
*/

.maker__card {
  display: flex;
  margin-top: 24px;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.12);
  padding: 24px 24px;
  border-radius: 8px;
}

.maker__picture {
  border-radius: 50%;
  width: 88px;
}

.maker__right {
  margin-left: 22px;
}

.maker__right__title {
  color: #aaa;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 8px;
}

.maker__right__description {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
}

/**
* Purchase result
*/

.purchase__result {
  text-align: center;
  font-size: 24px;
  padding: 0px 20px;
}

.purchase__result__text {
  margin-bottom: 30px;
}

.purchase__result__button {
  color: white;
  /* background-color: hsl(2, 84%, 64%); */
  /* background-color: hsl(2, 66%, 58%); */
  background-color: #e65b57;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 18px;
}

/* @media only screen and (max-width: 300px) {
  body {
    overflow-y: hidden;
  }
} */

/* .dnd-poly-drag-image {
  opacity: 0.5 !important;
} */
