
/*---------------------------------
リセットｃｓｓ
---------------------------------*/

*{
  padding: 0;
  margin: 0;
  }

html{
 font-size: 100%;
}

body{
 color: #24292e;
 
}

a{
 text-decoration: none;
}

img{
 max-width: 100%;
}

li{
 list-style: none;
 font-size: 1.2rem;
}
p {
  text-align: justify;
  font-size: 1.1rem;
}

.wrapper{
max-width: 960px;
margin: 0 auto 130px auto;
font-size: 0.9rem;
padding: 0 4%;
}

.button {
  position: relative;
  display: inline-block;
  padding: 0.8em 2em;
  text-decoration: none;
  color: black;
  background: pink;/*色*/
  border: solid 1px pink;/*線色*/
  border-radius: 25px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
  margin: 5px;
  font-size: 16px;
  
}

.button:active {
  /*押したとき*/
  border: solid 1px #03A9F4;
  box-shadow: none;
  text-shadow: none;
  
}
.button:hover{
  opacity: 0.8;
}

h1 {
  padding: 50px 0px;
}  
.guide {
  padding: 50px 0px;

}
#contents .flex {
  display: flex;
  justify-content: space-around;
}
#contents .box {
  padding: 20px;
}
.title_2 {
  margin-top: 80px;
  margin-bottom: 50px;
  text-align: center;
}
.contents_p {
  margin-top: 50px;
}
.title_3 {
  margin-top: 50px;
}
h4 {
  margin-top: 50px;
}
.box_a {
  margin-top: 80px;
}
@media screen and (max-width:600px) {
h1 {
text-align: center;
font-size: 25px;
}  
h1 span {
display: inline-block;
}
.breadcrumbs {
margin-top: 80px;
}
h2 span {
  display: inline-block;
}

#contents .flex {
  flex-direction: column;
}
} 

/*---------------------------------
3つの気のトレーニング横並び
---------------------------------*/

#menu2{
    background-color: pink;
    padding: 30pX;
    margin-top: 50px;
  }
  #menu2 h2{
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
  }
  #menu2 .flex{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  #menu2 .box{
    width: 350px;
    margin-bottom: 20px;
  }
  #menu2 .box img{
    width: 100%;
    height: auto;
  }
  #menu2 .box p{
    text-align: justify;
    margin-bottom: 20px;
  }
  #menu2 .box a{
    display: inline-block;
    padding: 10px 50px;
    background: #E94E66;
    color: white;
    text-decoration: none;
    border-radius: 30px;
  }
  #menu2 .box a:hover{
    opacity: 0.8;
  }
  #menu2 p{
    font-size: 13px;
  }
  
  
  
     
  @media screen and (max-width:600px) {

#menu2{
  padding-left: 2px;
  padding-right: 2px;
  
}

#menu2 h2{
  font-size: 1.3rem;

}
#menu2 h3{
font-size: 1.4rem;
margin-top: 10px;
}
#menu2 .box p{
font-size: 0.9rem;
}

}


/*---------------------------------
トップへもどるボタン
---------------------------------*/

.go-top{
  position: fixed;
  bottom: 100px;
  left: 30px;
  z-index: 9999;
  
}
.go-top a{
  
  width: 50px;
  height: 50px;
  display: inline-block;
  background: #E94E66;
  border-radius: 50px;
  text-align: center;
  line-height: 50px;
  color: black;
  text-decoration: none;

  

  
}

.go-top a:hover{
    opacity: 0.8;
  }
  @media screen and (max-width:600px) {
    .go-top {
      position: relative;
      left: 0;
      bottom: 0;
    }
  

  }
  