@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;
}