@charset "utf-8";
/* CSS Document */
/*-- **ページ全体　余白無くす ↓↓ --*/
* {
  margin: 0;
  padding: 0;
}

/*-- **ページ全体　フォントremの基準値設定(ルート相対) ↓↓ --*/
html {
  font-size: 62.5%; /*1rem=10pxに合わせる*/
}

/*-- **body　フォント設定 ↓↓ --*/
body {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  letter-spacing: 0.04rem;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  -ms-font-feature-settings: "normal";
}

.p-moku section{
	padding: 1% 3%;
	box-sizing: border-box;
}
.p-moku .flex-pc2-sp1,.p-moku .flex-pc3-sp1{
	display : flex;
	flex-direction:row;
    flex-wrap:wrap;
	justify-content: space-between;
}
.p-moku .flex-pc2-sp1 > div{
	width: 44%;
	margin: 3%;
	/* padding: 3%; */
	box-sizing: border-box;
	flex-wrap:wrap;
}
.p-moku .flex-pc3-sp1 > div,.p-moku .flex-pc3-sp1 > li{
	/*width: 33%;*/
	width: 50%;
	padding: 2%;
	box-sizing: border-box;
	flex-wrap:wrap;
	list-style: none;
}


.p-moku h2{
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	margin: 3% 0;
}
.p-moku h3{
	font-size: 2.0rem;
	font-weight: bold;
	text-align: center;
	margin: 3% 0;
}
.p-moku span.sub-txt{
	font-size: 1.6rem;
}

.p-moku img{
	width: 100%;
}
.p-moku p.pc1-sp1{
	margin: 0 auto;
	width: 80%;
	text-align: center;
}

@media screen and (max-width: 600px) {
.p-moku .flex-pc2-sp1 > div,.p-moku .flex-pc3-sp1 > div,.p-moku .flex-pc3-sp1 > li{
	width: 100%;
}
	.p-moku section{
		padding: 3% 2%;
	}
	.p-moku h2{
		margin: 0 0 3%;
	}
	
}


/*-- **赤背景button ↓↓ --*/
.c-btn {
	margin: 1% auto;
	width: 31.24%;
}
.c-btn-100 {
	margin: 1% auto;
	width: 77.5%;
}
@media screen and (max-width: 600px) {
.c-btn,.c-btn-100 {
	width: 90%;
}
}
.c-btn a,.c-btn-100 a {
	font-size :1.6rem;
	text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
  border: solid 2px #e50112;
  background: #e50112 url(https://myroom.itembox.design/item/images/cnt/i-arrow1.png) no-repeat right 20px center;
  background-size: 17px;
  border-radius: 5px;
  color: #fff;
  -webkit-transition: color .3s ,background-color .3s;
  transition: color .3s ,background-color .3s;
}

.c-btn a:hover,.c-btn-100 a:hover {
  background-color: #fff;
  background-image: url(https://myroom.itembox.design/item/images/cnt/i-arrow1-2.png);
  color: #e50112;
}