@charset "UTF-8";
/*--------------------------------------------------
  body
--------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #333;
  font-size: 1.4rem;
	font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

a {
	display: block;
	color: #333;
  text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

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

body, html {
	height: 100%;
}

.sp_br {
	display: none;
}
.pc_br {
	display: block;
}

.sp_only {
  display: none;
}
.pc_only {
  display: block;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

@media screen and (max-width: 768px) {
	.sp_br {
		display: block;
	}
	.pc_br {
		display: none;
	}

	.sp_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
}





/*--------------------------------------
　header
---------------------------------------*/
header {
  background: #fff;
  max-width: 750px;
  margin: auto;
  padding: 1rem 1rem;
}

header .logo  {
  width: 210px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  header {
    max-width: 100%;
    padding: 5px 5px;
  }

  header .logo  {
    width: 11rem;
  }
}



/*--------------------------------------
　contents
---------------------------------------*/
.contents {
  width: 100%;
  max-width: 750px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .contents {
    max-width: 100%;
  }
}



/*--------------------------------------
　animation
---------------------------------------*/
.fadeUp {
  opacity : 0;
  transition: all 0.3s linear;
}
.fadeUp.isActive {
  animation: fadeUp 0.6s ease-in-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}



/*--------------------------------------
　mv
---------------------------------------*/
.mv {
  position: relative;
}

.mv .mv_50off {
  position: absolute;
  top: 43%;
  right: 15px;
  width: 32%;
}
.mv .mv_50off_inner {
	animation: UpDown 1.4s ease-in-out infinite alternate-reverse;
}

.mv_fadeup {
  opacity : 0;
  transition: all 0.3s linear;
}
.mv_fadeup.active {
  animation: fadeUp 0.6s ease-in-out forwards;
}
/* アニメーションの設定 */
@keyframes UpDown {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}

/*--------------------------------------
　cta01
---------------------------------------*/
.cta01 {
  position: relative;
}

.cta01_50off {
  position: absolute;
  bottom: 22%;
  left: 0;
  right: 0;
  width: 50%;
  margin: auto;
  animation: emphasis 2s ease-out infinite;
  opacity: 1;
}

@keyframes emphasis {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

.cta01_btn {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  width: 85%;
  margin: auto;
}
.cta01_btn a {
  overflow: hidden;
  position: relative;
}
.cta01_btn a::before {
  position: absolute;
  content: "";
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(30deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
  animation: shine 3.5s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}


/*--------------------------------------
　cta02
---------------------------------------*/
.cta02 {
  margin: 4rem 0 0;
  padding: 0 3rem;
}

.cta02 .cta_inner {
  position: relative;
}

.cta02_50off {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  width: 88%;
  margin: 0 4.5% 0 auto;
  animation: blink 0.8s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .cta02 {
    margin: 1.5rem 0 0;
    padding: 0 1.5rem 0 1rem;
  }
}

/*--------------------------------------
　cta03
---------------------------------------*/
.cta03 {
  margin: 4rem 0 0;
  padding: 0 3rem;
}

.cta03 .cta_inner {
  position: relative;
}

.cta03_btn {
  position: absolute;
  bottom: 5%;
  right: 2%;
  width: 48%;
}
.cta03_btn a {
  overflow: hidden;
  position: relative;
}
.cta03_btn a::before {
  position: absolute;
  content: "";
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(30deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
  animation: shine 3.5s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@media screen and (max-width: 768px) {
  .cta03 {
    margin: 1.5rem 0 0;
  }
}

/*--------------------------------------
　txt
---------------------------------------*/
.note {
  font-size: 1.5rem;
  line-height: 1.5;
}

.red {
  color: #cb0002;
}

.fb {
  font-weight: bold;
}

sup {
	font-size: 60%;
	vertical-align: top;
  position: relative;
  top: 4px;
}

@media screen and (max-width: 768px) {
  .note {
    font-size: 1rem;
  }
}



/*--------------------------------------
　sec01
---------------------------------------*/
.sec01 {
  margin: 4rem 0 0;
	background:url("../img/sec01_bg01.jpg") center bottom no-repeat;
	background-size: cover;
}

.sec01_block {
  padding: 0 3rem;
}

.sec01_ttl02 {
  margin: 6rem auto 0;
}

.sec01_bottom {
  width: 85%;
  margin: 6rem auto 0;
}

.sec01 .txt {
  margin: 6rem auto 0;
  font-size: 2rem;
  text-align: center;
  line-height: 1.8;
}

.sec01 .note {
  margin: 2rem 0 0;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .sec01 {
    margin: 2rem 0 0;
  }

  .sec01_block {
    padding: 0 1.5rem;
  }

  .sec01_ttl02 {
    width: 100%;
    margin: 4rem auto 0;
  }

  .sec01_bottom {
    width: 90%;
    margin: 3rem auto 0;
  }
  
  .sec01 .txt {
    margin: 3rem auto 0;
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .sec01 .note {
    margin: 1rem 0 0;
  }
}



/*--------------------------------------
　sec02
---------------------------------------*/
.sec02 {
  margin: 6rem 0 0;
}

.sec02_block .item {
  padding: 5rem 3rem 5rem;
}
.sec02_block .item:nth-child(odd) {
  background: #fef3f2;
}
.sec02_block .item:nth-child(even) {
  background: #ffeee2;
}

.sec02_img01 {
  margin: 4rem 0 0;
}

.sec02_img02 {
  margin: 2rem 0 0;
}

.sec02_img03 {
  margin: 3rem 0 0;
}

.sec02_img04 {
  margin: 3rem 0 0;
}

.sec02_img05 {
  margin: 3rem 0 0;
}

.sec02 .note {
  margin: 2rem 0 0;
}

.sec02_bottom {
  margin: -1rem 0 0;
}

@media screen and (max-width: 768px) {
  .sec02 {
    margin: 3rem 0 0;
  }

  .sec02_block .item {
    padding: 3rem 1.5rem 3rem;
  }

  .sec02_img01 {
    margin: 2rem 0 0;
  }

  .sec02_img02 {
    margin: 1rem 0 0;
  }

  .sec02_img03 {
    margin: 2rem 0 0;
  }

  .sec02_img04 {
    margin: 2rem 0 0;
  }

  .sec02_img05 {
    margin: 2rem 0 0;
  }

  .sec02 .note {
    margin: 1rem 0 0;
  }

  .sec02_bottom {
    margin: -5px 0 0;
  }
}



/*--------------------------------------
　footer
---------------------------------------*/
.footer {
  background: #f1f1f1;
  margin: 8rem 0 0;
  padding: 3rem 0 2rem;
  position: relative;
}

.footer__logo {
  width: 210px;
  margin: 0 auto 3rem;
}

.footer__list {
  font-size: 2rem;
}
.footer__list li {
  padding: 1.5rem 0;
  margin: 0 auto;
  width: 380px;
  text-align: center;
}
.footer__list li:not(:last-child) {
  border-bottom: 1px solid rgba(89, 87, 87, 0.5);
}
.footer__list a {
  color: #505050;
}

@media screen and (max-width: 768px) {
  .footer {
    margin: 4rem 0 0;
    padding: 3rem 0;
  }

  .footer__logo {
    width: 16.4122137405rem;
    margin: 0 auto 1.5rem;
  }

  .footer__list {
    font-size: 1.4176663032rem;
  }
  .footer__list li {
    padding: 1rem 0;
    margin: 0 auto;
    width: 19em;
    text-align: center;
  }
}






