@charset "utf-8";

html {
	scroll-behavior: smooth;
  overflow-x: hidden;
}

/* * {
	border: 3px solid #f7b560;
} */

body {
	color: #222;
	background-color: #fdfdfd;
	font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

img {
    max-width: 100%;
    width: 100%;
}

p {
    font-size: 16px;
    line-height: 24px;
}

h1 {
  font-size: 14px;
  font-weight: bold;
  line-height: 26px;
}

span {
  font-size: 20px;
}

h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
	letter-spacing: 1px;
  margin-bottom: 30px;
}

.en-title {
  font-size: 36px;
  margin-bottom: 16px;
  display: inline-block;
  color: #47D8DC;
}

h3 {
  font-size: 20px;
  font-weight: bold;
}

/* ボタン */
.form {
  position: relative;
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
  z-index: 100;
  animation: bounce 1.2s infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px) scale(1.1);
  }
  100% {
    transform: translateY(0);
  }
}

.form .note {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #FF7533;
  letter-spacing: 3px;
  text-shadow: 0 4px 4px #0000005d;
  position: relative;
}

.form .note::before {
  content: " ";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #FF7533;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: -25px;
}

.form .note::after {
  content: " ";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #FF7533;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: -25px;
}

.btn {
  width: 250px;
  height: 50px;
  background-image: linear-gradient(90deg, rgba(255, 198, 51), rgba(255, 117, 51));
  border-radius: 50px;
  box-shadow: 0 4px 4px #0000005d;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  overflow: hidden;
}

.free {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: #ff7533;
  writing-mode: vertical-lr;
  background-color: #fff;
  letter-spacing: 3px;
  padding: 4px;
}

.entry {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #FF7533;
  border-right: 0;
}
/* ボタン終わり */

.SP-only {
    display: block;
}

.PC-only {
    display: none;
}
/* 共通終わり */




/* *****************************************
    タブレット版レスポンシブ
******************************************** */
@media (min-width: 700px) {
  .SP-only {
      display: none;
  }

  .PC-only {
      display: block;
  }

  .side-scroll-text {
      display: none;
  }
  
  .header-inner p {
      font-size: 20px;
      line-height: 50px;
  }

  h1 {
      font-size: 26px;
      line-height: 4rem;
  }
  
  span {
      font-size: 40px;
  }
}




/* ********************************************************
      PC版レスポンシブ
********************************************************* */

@media (min-width: 1024px) {
  p {
    font-size: 16px;
}

h1 {
  font-size: 36px;
  line-height: 5rem;
  width: 90%;
  padding-left: 20px;
}

span {
  font-size: 58px;
}

  h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .en-title {
    font-size: 96px;
}

  h3 {
    font-size: 32px;
  }

  .form {
    margin-top: 50px;
    animation: none;
  }
    
  .form:hover {
    animation: bounce 1s infinite;
  }


  .form .note {
    font-size: 20px;
    padding-bottom: 8px;
  }

  .btn {
    width: 450px;
    height: 90px;
  }

  .free {
    font-size: 20px;
  }

  .entry {
    font-size: 24px;
  }

  .SP-only {
    display: none;
}

  .PC-only {
    display: block;
}
/* 共通終わり */



}