@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: #e6e6e6;
}

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-top: 5%;
}
header nav {
  width: 60%;
}

header ul li {
  padding: 8px;
  text-align: right;
}
header ul li a {
  background-color: #ff7529;
  color: #fff;
  padding: 8% 12%;
  border-radius: 5px;
  font-weight: bold;
  filter: drop-shadow(0px 1px 2px #ccc);
}
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: 17%;
}
.cta {
  position: relative;
  text-align: center;
  background-color: #e1f7ff;
  padding: 5% 0;
}
.cta p {
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 0.04rem;
  display: inline-block;
  position: relative;
}
.cta p:before,
.cta p: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);
}

.web_cta {
  position: relative;
  display: inline-block;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 8% 0 8% 8%;
  width: 90%;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: #ff7529;
  filter: drop-shadow(0px 2px 4px #ccc);
  border-radius: 10px;
  line-height: 1.5rem;
  overflow: hidden;
  animation: pekopeko 2s infinite;
}
@keyframes pekopeko {
  0% {
    top: 0px;
  }

  10% {
    top: 3px;
  }

  20% {
    top: 0px;
  }

  30% {
    top: 3px
  }

  40% {
    top: 0px;
  }
}
.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%);
}

.cta_merpay {
  position: absolute;
  top: 23%;
  left: 0%;
  width: 100px;
  height: 100px;
}
@media screen and ( min-width:750px) {
  .cta_merpay {
    width: 200px;
    height: 200px;
}
}

.section01 {
  background-image: linear-gradient(181deg, rgba(225, 247, 255, 1), rgba(182, 195, 199, 1) 20%, rgba(128, 128, 128, 1));
  padding: 10% 0;

}

.section02 {
  padding: 10% 0 0;
  position: relative;
}
.section02 p:nth-child(2) {
  position: absolute;
  top: 38%;
  left: 8%;
  padding-right: 35%;
}
.section02 p:nth-child(3) {
  position: absolute;
  top: 62%;
  left: 8%;
  padding-right: 35%;
}
.section02 p:nth-child(4) {
  position: absolute;
  top: 81%;
  left: 8%;
  padding-right: 35%;
}
@media screen and ( min-width:750px) {
  /*　画面サイズが750pxからはここを読み込む　*/
  .section02 p:nth-child(2) {
    left: 10%;
  }
  .section03 p:nth-child(3) {
    left: 10%;
  }
  .section03 p:nth-child(4) {
    left: 10%;
  }
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-top: 30px solid #67cbef;
  border-bottom: 0;
  margin: auto;
  margin-top: 10%;
}

.cta_area .cta{
  padding: 5% 3%;
}
.btn,
a.btn,
button.btn {
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-c {
  position: relative;
  margin-bottom: 2%;
  padding: 1.5rem 1rem 1.5rem 3rem;
  width: 95%;
  color: #fff;
  border-radius: 10px;
  background: #ff7529;
  letter-spacing: 1px;
  filter: drop-shadow(0px 2px 4px #ccc);
  animation: pekopeko 2s infinite;
}
@keyframes pekopeko {
  0% {
    top: 0px;
  }

  10% {
    top: 3px;
  }

  20% {
    top: 0px;
  }

  30% {
    top: 3px
  }

  40% {
    top: 0px;
  }
}
a.btn-c: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;
}
a.btn-c span {
  font-size: 1.3rem;
  line-height: 1.3;
  position: absolute;
  top: -10px;
  left: -20px;
  width: 64px;
  height: 64px;
  padding-top: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #000;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
}
a.btn-c span em {
  font-style: normal;
  color: #d20010;
}
a.btn-c small {
  font-weight: bold;
}
a.btn-c i {
  margin-right: 1rem;
}
a.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
}
a.btn-c:hover span {
  -webkit-transform: translate(0, -5px);
  transform: translate(0, -5px);
}

.section05 {
  position: relative;
}
.section05 div {
  text-align: center;
  width: 80%;
}
.section05 h3 {
  margin-bottom: 2%;
}
.section05 h3 span {
  background: linear-gradient(transparent 50%, #faf492 50%);
}
.section05 div:nth-child(2) {
  position: absolute;
  top: 45%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.section05 div:nth-child(3) {
  position: absolute;
  top: 84%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.section06 {
  padding: 5% 0;
}

.campaign_bn {
  position: relative;
}
.campaign_bn .btn-wrap {
  position: absolute;
  top: 65%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  width: 85%;
  text-align: center;
}

.review_contents {
  margin-top: 8%;
}
.review h2 {
  background-color: #e2f7ff;
  text-align: center;
  padding: 8%;
  margin-top: 5%;
}
.profile {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 5%;
}
.profile img {
  width: 18%;
}
.review_box {
  border: #29abe2 solid 2px;
  border-radius: 8px;
  width: 90%;
  padding: 2%;
  margin: auto;
  margin-top: 3%;
}
.review_box span {
  background: linear-gradient(transparent 50%, #faf492 50%);
  font-weight: bold;
  color: #fa4141;
}

.qa {
  margin: 20% 0;
}
.qa h2 {
  text-align: center;
}
.qa h2 span{
  text-align: center;
  background: linear-gradient(transparent 50%, #faf492 50%);
}
.qa_contents {
  width: 95%;
  margin: auto;
  margin-top: 8%;
}
.question {
  background-color: #f7edaa;
  position: relative;
  padding: 5% 2% 5% 18%;
}
.answer {
  background-color: #f2d65f;
  position: relative;
  padding: 5% 2% 5% 18%;
  margin-top: 2%;
}
.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%);
}


/* ------------------------------------------------------------
  form
------------------------------------------------------------ */
.apply {
  background-color: #e2f7ff;
  padding: 10% 0;
  margin-top: 0;
}
.apply h2 {
  text-align: center;
}
.apply h2 span {
  position: relative;
  margin: 20px auto;
  padding: 10px;
  border-bottom: 5px solid #ffc200;
}
  
.apply h2 span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50%;
  height: inherit;
  border-bottom: 5px solid #29abe2;
}

.required_txt {
  background-color: #fa4141;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  padding: 1% 2%;
}
.idcard {
  text-align: center;
  margin-top: 5%;
}
.idcard img{
  width: 40%;
}


/* ------------------------------------------------------------
  fotter
------------------------------------------------------------ */
.company {
  padding: 10% 0;
}
.company h2 {
  text-align: center;
}
.company h2 span {
  background: linear-gradient(transparent 50%, #e2f7ff 50%)
}

/* 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: #29abe2;
  padding: 5% 0;
  text-align: center;
}
.c-footer .copyright {
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #fff;
  text-align: center;
  margin-top: 3%;
}