/* style.css */

:root {
      --clr-bg: #000000;
      --clr-overlay: rgba(0, 0, 0, 0.85);
      --clr-primary: #e63946;
      --clr-secondary: #457b9d;
      --clr-light: #f1faee;
      --clr-dark: #1d3557;
      --font-serif: 'Noto Serif JP', serif;
      --transition-time: 0.3s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

header {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    box-sizing: border-box;
    background: url("../image/header_bg2.jpg") top center no-repeat;
    background-size: cover;
}

header .head_bg {
    padding: 50px 0 25px 0;
    animation: bgchange 30s ease infinite;
    padding-bottom: calc(10vw + 10px);  
    position: relative;
    overflow: hidden;
}

header .head_bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 10vw solid #fff;
    border-left: 100vw solid transparent;
}

header .head_bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 10vw solid #fff;
    border-right: 100vw solid transparent;
}

@keyframes bgchange{
      0%   {background:#000000;}
      20%  {background:rgba(7,59,177,0.2);}
      75%  {background:rgba(7,59,177,0.9);}
      90%  {background:rgba(7,59,177,0.5);}
	  100%  {background:#000000}
 }

header h1 {
	width: 100%;
	max-width: 750px;
    margin: 1rem auto;
}

header h1 img {
	width: 100%;
}

header ul {
  width: 100%;
  max-width: 750px;
  margin: 1rem auto;
  list-style: none;
}

header ul li {
  position: relative;
  padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.0rem;
  font-weight: 700;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}

.check {
	width: 40px;
	margin: 0 0.2rem 0 0;
	line-height: 0;
	background: url("../image/check2.png") top left no-repeat;
	background-size: cover;
}

.mindful {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: #fff;
  padding: 0 0 2rem 0;
}

.bubble-heading {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 2rem auto;
  padding: 0.8em 0.6em;
  display: inline-block;
  position: relative;
  border: 1px solid #0465e4;
  background-color: #0465e4;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.2;
  border-radius: 3px;
  text-align: center;
}

.bubble-heading::after {
  content: "";
  position: absolute;
  bottom: -0.6em;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.6em solid transparent;
  border-right: 0.6em solid transparent;
  border-top: 0.6em solid #0465e4;
  pointer-events: none;
}

p.click {
	margin: 0 0 5px 0;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	text-align: center;
	color: #0465e4;
}

.video-box {
  margin: 0 0 2rem 0;
  border-radius: 12px;
  overflow: hidden;
 }

.video-box iframe {
  width: 100%;
  height: 320px;
  margin: 0 auto;
  border: 0;
  border-radius: 6px;
}

p.text {
	font-size: 1.2rem;
	text-align: center;
}

.cta-button {
  width: 100%;
  background: none;
  box-shadow: none;
  border: none;
}

.cta-button a {
  width: 100%;
  margin: 1rem 0 3rem 0;
  padding: 1.4rem 1.4rem;
  display: inline-block;
  background: #22ac38;
  color: #ffffff;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 10px #0b7017;
  transition: transform var(--transition-time), box-shadow var(--transition-time);
  position: relative;
}

.cta-button a:hover {
  transform: translateY(8px);
  box-shadow: 0 2px var(--clr-dark);
}

.cta-button a:active {
  transform: translateY(0);
  box-shadow: 0 4px var(--clr-dark);
}

.cta-button a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 49%;
    right: 30px;
    border-radius: 1px;
}

.cta-button a:hover:after {
    border-color: #FFF;
}

ul.types {
  margin: 1.0rem auto 2.0rem auto;
  padding: 1.0rem 1.5rem;
  list-style: none;
  text-align: left;
  border: 4px solid #22ac38;
  border-radius: 5px ;
}

ul.types li {
  padding: 1.0rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: 1px dashed #22ac38;
}

ul.types li:first-child {
  padding: 0.5rem 0 1.0rem 0;
}

ul.types li:last-child {
  padding: 1.0rem 0 0.5rem 0;
  border-bottom: none;
}

span.num {
	margin: 0 0.5rem 0 0;
	padding: 0.4rem 0.6rem;
	font-size: 1.5rem;
	color: #ffffff;
	background: #22ac38;
	border-radius: 2px;
}

footer {
  width: 100%;
  margin: 0;
  padding: 0.5rem 0;
  color: #ffffff;
  text-align: center;
  background: #0465e4;
}

.pc-display {
	display: block;
}

.sp-display {
	display: none;
}

@media screen and ( max-width:768px ) {
	
}

@media screen and ( max-width:480px ) {

header .head_bg {
    padding: 1.0rem 1.0rem 2.5rem 1.0rem;
}
	
header h1 {
    margin: 0 auto 0.5rem auto;
}

header ul li {
  margin-bottom: 0.5rem;
  padding: 0.7rem;
  font-size: 0.9rem;
}
	
.mindful {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: #fff;
  padding: 0 1rem 1.5rem 1rem;
}

.mindful .bubble-heading {
  padding: 0.5em 0.6em;
  font-size: 1.5rem;
}

p.text {
	font-size: 1.0rem;
}
	
.cta-button a {
    margin: 1rem 0 2rem 0;
	font-size: 1.4rem;
  border-radius: 80px;
}

ul.types {
  margin: 0 auto;
  list-style: none;
  text-align: left;
}

ul.types li {
  font-size: 1.0rem;
}
	
span.num {
	margin: 0 0.5rem 0 0;
	padding: 0.2rem 0.4rem;
	font-size: 1.0rem;
}

.pc-display {
	display: none;
}

.sp-display {
	display: block;
}
}
