@charset "UTF-8";

/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */

html {
  scroll-behavior: smooth;
}

/*for SP*/
@media screen and (max-width:750px) {
  .font-size-S {
      font-size: 14px;
  }
  .font-size-M {
      font-size: 16px;
  }
  .font-size-L {
      font-size: 28px;
  }
}

/*for PC*/
@media screen and (min-width:750px) {
  .font-size-S {
      font-size: 24px;
  }
  .font-size-M {
      font-size: 28px;
  }
  .font-size-L {
      font-size: 48px;
  }
}

body {
  /* 游ゴシック体 */
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  scroll-padding-top:120px;
  background: #f3f3f3;
}

a {
  text-decoration: none;
  transition-duration: 0.2s;
}
@media (min-width: 960px) {
  a:hover {
    transition-duration: 0.2s;
  }
}

p {
  line-height: 1.6em;
  color: #333333;
}

h2 {
  color: #333333;
}

h3 {
  color: #333333;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section img {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  max-width: 750px;
  height: 100%;
}

*:focus {
  outline: none;
}

/*PCでは無効（改行しない）*/
.br-sp{
  display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
  .br-sp{
      display: block;
  }
}
/* ------------------------------------------------------------
  body-wrapper
------------------------------------------------------------ */
.body-wrapper {
  position: relative;
  overflow-x: hidden;
  background: #fff;
  max-width: 750px;
  margin: auto;
}

/* ------------------------------------------------------------
  header
------------------------------------------------------------ */
header {
  position: relative;
  position: fixed;
  top: 0;
  left: 50%;
  max-width: 750px;
  width: 100%;
  transform: translateX(-50%);
  background: #fff;
  border-bottom: 1px solid #b5b5b5;
  z-index: 100;
}

header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3%;
}

header h1 {
  width: 40%;
  padding: 5% 0;
}
header nav {
  width: 60%;
}

header ul li {
  padding: 8px;
  text-align: right;
}
header ul li a {
  color: #fff;
  padding: 8% 12%;
  border-radius: 5px;
  font-weight: bold;
  filter: drop-shadow(0px 1px 2px #ccc);
  background: linear-gradient(#FF3372 0%, #FF005D 50%, #EB005D 51%, #FF2172 100%);
  border: solid 1px #FF005D;
  box-shadow: 0 1px 2px #606060, 0 0 2px #FFF inset;
  text-shadow: 3px 0 3px #FF005D, 0 3px 3px #FF005D, -3px 0 3px #FF005D, 0 -3px 3px #FF005D;
}
header ul li a:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 2px;
	width: 0;
	height: 0;
	margin-top: -5px;
	border: 5px solid transparent;        /*top right bottom を透明化 */ 
	border-left: 5px solid #fff;
}

@media screen and ( min-width:750px) {
  header h1 {
  padding-bottom: 3%;
}
}

/* ------------------------------------------------------------
  main
------------------------------------------------------------ */
.c-main {
  margin-top: 19%;
}
@media screen and ( min-width:750px) {
  .c-main {
    margin-top: 16%;
  }
}
.cta {
  position: relative;
  text-align: center;
  background-color: #eeeeee;
  padding: 5% 0;
}
.cta p {
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 0.04rem;
  display: inline-block;
  position: relative;
}
.comment:before,
.comment:after {
  display: inline-block;
  position: absolute;
  top: 45%;
  width: 20px;
  height: 2px;
  border-radius: 5px;
  background-color: #333333;
  content: "";
}
.cta p:before {
  left: -20px;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
}
.cta p:after {
  right: -20px;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
}
.cta span {
  color: #FD37B0;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and ( min-width:750px) {
  .cta span {
    font-size: 2.2rem;
  }
}
.web_cta {
  display: block;
  border-radius: 10px;
  padding: 12px;
  width: 90%;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  text-decoration: none;
  background: linear-gradient(#FF3372 0%, #FF005D 50%, #EB005D 51%, #FF2172 100%);
  border: solid 1px #FF005D;
  box-shadow: 0 1px 2px #606060, 0 0 2px #FFF inset;
  text-shadow: 3px 0 3px #FF005D, 0 3px 3px #FF005D, -3px 0 3px #FF005D, 0 -3px 3px #FF005D;
  margin: auto;
  margin-bottom: 3%;
  animation: dokundokun 3300ms ease infinite;
}
  @keyframes dokundokun {
    0%  { transform: scale(1); }
    15% { transform: scale(1.05); }
    30% { transform: scale(1); }
    45% { transform: scale(1.05); }
    70% { transform: scale(1); }
  }
.web_cta:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 0;
  height: 0;
  margin-top: -10px;
  border: 10px solid transparent;        /*top right bottom を透明化 */ 
  border-left: 10px solid #fff;
}
.web_cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.section03 {
  position: relative;
}
.cta_paidyapple {
  position: absolute;
  width: 90%;
  min-width: 350px ;
  top: 68%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  text-align: center;
}
.cta_paidyapple p {
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 0.04rem;
  display: inline-block;
  position: relative;
}
.cta_paidyapple p:before {
  left: -20px;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
}
.cta_paidyapple p:after {
  right: -20px;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
}

.section04 {
  text-align: center;
  padding: 8% 0;
}
.section04 img {
  margin: 5% 0;
}

.section05 {
  position: relative;
  font-weight: bold;
}
.section05 p:nth-child(2) {
  position: absolute;
  top: 20%;
  left: 37%;
  padding-right: 5%;
}
.section05 p:nth-child(3) {
  position: absolute;
  top: 45%;
  left: 37%;
  padding-right: 5%;
}
.section05 p:nth-child(4) {
  position: absolute;
  top: 69.5%;
  left: 37%;
  padding-right: 5%;
}

.section07 {
  position: relative;
  font-weight: bold;
}
.section07 p:nth-child(2) {
  position: absolute;
  top: 53.5%;
  left: 18%;
  padding-right: 5%;
}
.section07 p:nth-child(3) {
  position: absolute;
  top: 79%;
  left: 8%;
  padding-right: 15%;
}

.review {
  background-color: #CFEFFF;
  padding-bottom: 10%;
}
.review_contents {
  margin-top: 8%;
}
.review h2 {
  background-color: #00A0E9;
  color: #fff;
  text-align: center;
  padding: 0 0 3%;
  margin-top: 5%;
}
.profile {
  display: flex;
  justify-content: left;
  align-items: end;
  gap: 5%;
  padding-left: 6%;
}
.profile img {
  width: 18%;
}
.review_box {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  padding: 2%;
  margin: auto;
  margin-top: 3%;
}
.review_box span {
  font-weight: bold;
  color: #fa4141;
}

.qa {
  background-color: #FFFAC7;
  padding-bottom: 10%;
}
.qa h2 {
  background-color: #FFF8A5;
  text-align: center;
  padding: 8%;
}

.qa_contents {
  width: 95%;
  margin: auto;
  margin-top: 8%;
  background-color: #fff;
}
.question {
  position: relative;
  padding: 5% 2% 5% 18%;
}
.Q {
  color: #00B9EF;
}
.answer {
  position: relative;
  padding: 5% 2% 5% 18%;
  margin-top: 2%;
}
.A {
  color: #F2434C;
}
.qa_contents span {
  position: absolute;
  background-color: #fff;
  padding: 0 3%;
  border-radius: 5px;
  font-weight: bold;
  top: 50%;
  left: 2%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.qa_contents hr {
  width: 90%;
  margin: 0 auto;
}

.section08 {
  position: relative;
}
.section08 a {
  position: absolute;
  top: 82%;
  left: 5%;

}

/* ------------------------------------------------------------
  fotter
------------------------------------------------------------ */
.company {
  padding-bottom: 10%;
}
.company h2 {
  background-color: #E6E6E6;
  text-align: center;
  padding: 8%;
}
.triangle{
  margin: auto;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 15px solid #E6E6E6;
}

/* table01 */
#table01 {
  margin: auto;
  border: #29abe2 2px solid;
  margin-top: 5%;
  width: 90%;
  max-width: 700px;
}
#table01 tr {
  border-bottom: 1px solid #b5b1b1;
}

#table01 th,
#table01 td {
  padding: 24px 0;
  border: none;
}

#table01 th {
  width: 30%;
}

.c-footer {
  background-color: #00A0E9;
  padding: 5% 0;
  text-align: center;
}
.c-footer .copyright {
  color: #fff;
}

/*追加タイマー*/
.notification-box {
  background-color: #565656;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px 5px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin: 10px;
}

@media screen and (max-width: 590px) {
  .notification-box {
      font-size: 1.2rem;
  }
}

@media screen and (max-width: 475px) {
  .notification-box {
      font-size: 0.95rem;
  }
}

.notification-box p {
  margin-top: 0;
  color: #fff;
}

/* 黄色の点滅テキスト */
.blinking-text {
  color: #FFF961;
  animation: blink 1s infinite;
}

/* 補足テキスト */
.note {
  font-size: 12px;
  color: #000;
  margin: 5px 10px 10px 0;
  text-align: right;
}

/* 点滅アニメーション */
@keyframes blink {
  0% {
      opacity: 1;
  }

  40% {
      opacity: 1;
  }

  50% {
      opacity: 0;
  }

  60% {
      opacity: 1;
  }

  100% {
      opacity: 1;
  }
}

/* 初期状態では非表示 */
.notification-box,
.note {
  display: none;
}


/*追加フローティング吹き出し*/
.notification-bubble {
  display: none;
}

@media screen and (max-width: 560px) {
  .bubble-active {
      display: block;
  }

  .contact-wrapper {
      position: relative;
  }

  .notification-bubble {
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: #FFF;
      border: 2px solid #63c5eb;
      color: #484848;
      padding: 4px 6px;
      border-radius: 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      font-size: 12px;
      font-weight: bold;
      z-index: 10;
      white-space: nowrap;
      width: 55vw;
  }

  .notification-bubble strong {
      color: #ff0080;
      font-weight: bold;
  }

  .notification-bubble::before,
  .notification-bubble::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      pointer-events: none;
  }

  .notification-bubble::before {
      bottom: -12px;
      border-left: 11px solid transparent;
      border-right: 11px solid transparent;
      border-top: 11px solid #63c5eb;
      z-index: -2;
  }

  .notification-bubble::after {
      bottom: -10px;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-top: 10px solid #FFF;
      z-index: -1;
  }
}

/*----------------------------------

ボタン
ぴょんぴょん動くアニメーション

---------------------------------- */

.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {

  0%,
  40%,
  60%,
  80% {
      transform: scale(1.0);
  }

  50%,
  70% {
      transform: scale(0.95);
  }
}

.hide-bubble {
  display: none !important;
}

/*フローティング*/
.float__area {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: var(--index-fixed);
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: clamp(.5rem, .196rem + 1.3vw, 1rem);
  padding-right: .5rem;
  padding-bottom: clamp(.5rem, .196rem + 1.3vw, 1rem);
  padding-left: .5rem;
  background-color: rgba(0, 0, 0, .5);
  transition: transform .3s;
  transform: translateY(100%)
}

.float__area.is-cross {
  transform: translateY(0)
}

.float__area.is-bottom {
  transform: translateY(100%)
}

.float__button {
  max-width: 36.25rem;
  padding: clamp(1rem, .544rem + 1.94vw, 1.75rem);
  font-size: clamp(1.375rem, .843rem + 2.27vw, 2.25rem)
}

@media screen and (max-width:576px) {
  .float__button {
      max-width: 25rem
  }
}
.link-button {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 42.5rem;
  padding: clamp(1.5rem, .892rem + 2.59vw, 2.5rem);
  font-size: clamp(1.5rem, 0.8rem + 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(#FF3372 0%, #FF005D 50%, #EB005D 51%, #FF2172 100%);
  border: solid 1px #FF005D;
  box-shadow: 0 1px 2px #606060, 0 0 2px #FFF inset;
  border-radius: 10px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .15);
  transition: background-color .3s, color .3s
}

.link-button::before {
  display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 2px;
    width: 0;
    height: 0;
    margin-top: -10px;
    border: 10px solid transparent;
    border-left: 10px solid #fff;
}

.link-button .-fixed {
  position: absolute;
  top: 50%;
  left: .1em;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 95%;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 100vmax;
  transition: background-color .3s, color .3s;
  transform: translateY(-50%)
}

.link-button .-fixed>span:first-of-type {
  font-size: .55em;
  color: #000;
  line-height: 0.7;
}

.link-button .-fixed>span:not(:first-of-type) {
  font-size: .7em;
  color: #ff0080;
}

.link-button .-fixed > span:nth-of-type(3) {
  font-size: .55em;
  color: #000;
  line-height: 0.7;
}