@charset "UTF-8";

/*
Theme Name: CustomMadeLP_モテ塾Dub
Author: TY10八
Description: LPハスTY10　Respect Harneys.
Version: Prototype_1.0
*/

body {
	margin: 0;
	background-image:url(img/bg_white.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

/* header.php */
.sp-header {
	display: flex;
	justify-items: center;
	justify-content: space-between;
	width: 90%;
}

.drawer-content {
	text-align:center;
	margin : 1rem auto;
}

.no-wrap {
    white-space: nowrap;
}

.header {
    flex-wrap: wrap;
    width: 80%;
	z-index :10;
	position: absolute;
    width: 100%;
    padding: 30px 7vw;
    box-sizing: border-box;
}

.menu-header-container {
    width: 100%;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li{
    width:100%;
    padding: 10px;
    flex: auto;
    
}

a {
    text-decoration: none;
    color: #2d2d2d;
}

.site-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-logo {
	margin: 0 2rem;
  }

.header-nav {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-weight: bolder;
  }

.header-button {
	width: auto;
}

/* ヘッダボタン */
.btn_box{
	/* position: absolute; */
	transform: translate(-50%, -50%);
	margin: 0 auto;
	text-align: center;
  }
  
  #btn_animation .btn {
	display: block;
	position: relative;
	width: 100px;
	height: 35px;
	line-height: 35px;
	font-size: 1rem;
	text-decoration: none;
	background-color: #ff69b4;
	color: #fbfbfb;
	text-align: center;
	overflow: hidden;

  }
  
  #btn_animation .btn:hover {
	  text-decoration: none;
	  color: #fbfbfb;
  }
  
  #btn_animation .btn::before {
	  /* position: absolute; */
	  content: '';
	  display: inline-block;
	  top: -180px;
	  left: 0;
	  width: 30px;
	  height: 100%;
	  background-color: #fbfbfb;
	  animation: btn_animation 2.5s ease-in-out infinite;
  }
  
  @-webkit-keyframes btn_animation {
	  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
	  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
	  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
	  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
  }

  .flexBox {
	display: flex;
  	flex-direction: column;
  	align-items: center;
  }

  .flexBox-content {
	width: auto;
 	height: auto;
  	/* margin: 2rem auto */
  }

  .btn {
	font-size: small;
	color: #f4f4f4;
	background-color: #ff69b4;
	padding: 0.4rem 1.6rem;
	border-radius: 99999px;
	text-align: center;
	margin: 0 auto;
  }



.c-button._shiny {
	display: block;
	position: relative;
	padding: 1em 1.5em;
	background-color: #ff69b4;
	box-shadow: 0 3px 0 0 #e42283;
	border-radius: 4px;
	margin:1px auto;
	font-weight: bold;
	font-size: 16px;
	max-width:500px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	overflow: hidden;
	transition: 300ms;
	}
.c-button._shiny::before {
	position: absolute;
	content: '';
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #b5e7ff;
	transition: 300ms;
	animation: shinyshiny 2.5s ease-in-out infinite;
}
	
.c-button._shiny:hover {
	text-decoration: none;
	color: #fff;
	box-shadow: none;
	-webkit-transform: translateY(3px);
}
	
@-webkit-keyframes shinyshiny {
	0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.sp-c-button {
	width: 50%;
}

.btn-action {
	animation: btn-action 3s infinite;
}
@keyframes btn-action {
    0% {
        transform: scale(1, 0.8);
    }
    20% {
        transform: scale(0.8, 1.1);
    }
    95% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(1, 0.8);
    }
}

  .button-copy {
	display: block;
	font-size: xx-small;
	margin-bottom: 0.3rem;
  }

.has-text-align-center {
	margin:0 auto
}
.wp-block-button {
	text-align:center;
}


  /* ハンバーガーメニュー */
  /* クリック前 */
  .nav_toggle {
	display: block;
	position: relative;
	width: 1.75rem;
	height: 1.5rem;
  }
  .nav_toggle i {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #333;
	position: absolute;
	transition: transform .5s, opacity .5s;
  }
  .nav_toggle i:nth-child(1) {
	top: 0;
  }
  .nav_toggle i:nth-child(2) {
	top: 0;
	bottom: 0;
	margin: auto;
  }
  .nav_toggle i:nth-child(3) {
	bottom: 0;
  }


  .menu-humberger-container {
	position: fixed;
	top: 3rem;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s, visibility .5s;
  }
  

  /* クリック後 */
  .nav_toggle.show i:nth-child(1) {
	transform: translateY(10px) rotate(-45deg);
  }
  .nav_toggle.show i:nth-child(2) {
	opacity: 0;
  }
  .nav_toggle.show i:nth-child(3) {
	transform: translateY(-12px) rotate(45deg);
  }

  .menu-humberger-container.show {
	opacity: 1;
	visibility: visible;
  }
  
  

.sp-drawer {
	font-size: 3rem;
	color:#2d2d2d;
}

.sp-nav-button {
	text-align: center;
}




/* index.php */
.wp-block-cover__background {
	padding: 10%;
}

.wp-block-cover__inner-container {
	text-align:center
}

.marker {
	background: linear-gradient(transparent 60%, #ff69b4 0%);
  	display: inline;
  	padding: 0 1px 0px;
}
.text-stroke {
	color: transparent;
  	-webkit-text-stroke: 1px #fff;
	text-stroke: 1px #fff;
}




/* footer.php */
footer {
	padding-top: 2rem;
	margin-top: 2rem;
	margin-bottom: 0;
}

.footer-logo {
	text-align: center;
	margin: 2rem auto;
}

.footer-bland {
	font-size: xx-large;
	font-weight: bolder;
}

.menu-footer-container {
    width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: smaller;
}

.copyrights {
	text-align: center;

	font-size: 1rem;
}


/* page.php */
.content {
	padding-top:10rem;
}