@charset "UTF-8";
/*
 original.css
 本サイト各ページ用CSS
*/

h2.d-box-title{
	width: 404px;
    height: auto;
	padding-top: 12%;
	background-image: url(../images/original/title.png);
	background-repeat: no-repeat;
    background-size: contain;
	background-position: center;
	font-size: 0;
    margin: 0 auto 2%;
}

#book-info{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
	flex-wrap: wrap;
	align-items: center;
}


#book-title{
	text-align: center;
	flex: 1;
}

#book-title h3{
	font-size: 36px;
	font-size: 3.6rem;
	color: #9d7b32;
}

#book-title h4{
	font-size: 40px;
	font-size: 4rem;
	color: #981b2f;
}

#book-title p{
	letter-spacing: 0.5rem;
}

#book-image{
	width: 303px;
	margin: 0 3% 0 0;
	box-sizing: border-box;
}

.book-txt{
	margin: 5% auto;
}

.book-txt p{
	width: 95%;
	font-size: 18px;
	font-size: 1.8rem;
	margin: 0 auto;
	line-height: 2;
}

.book-txt:after{
	content:"";
	display: block;
	margin: 0 auto;
	padding: 5% 0 0 0;
	border-bottom: 5px dotted #a23030;
	width: 60%;
}

#original-comment{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
	flex-wrap: wrap;
	align-items: flex-start;
}

div#comment-photo{
	max-width: 238px;
	margin: 0 3%;
	text-align: center;
}

div#comment-photo p.photo{
	max-width: 238px;
	height: auto;
	margin: 0 auto;
}

div#comment-photo p.photo img{
	width: 98%;
}

p.s-txt{
	max-width: 238px;
	margin: 0 auto;
	color: #77672f;
	font-size: 14px;
	font-size: 1.4rem;
	text-align: left;
}

.comment-txt{
	flex: 1;
	box-sizing: border-box;
	margin-left: 3%;
}

.comment-txt h3 {
  display: inline-block;
  position: relative;
  height: 40px;/*高さ*/
  line-height: 40px;/*高さ*/
  vertical-align: middle;
  text-align: center;
  padding: 0 80px 0 18px;/*文字の左右の余白*/
  font-size: 25px;
  font-size: 2.5rem;
  background: #91844c;
  color: #FFF;
  box-sizing: border-box;
  letter-spacing: 0.5rem;
  margin-bottom: 3%;
}

.comment-txt h3:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.comment-txt h3:after {
  top: 0;
  right: -1px;
  border-width: 20px 20px 20px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

.comment-txt p{
	font-size: 18px;
	font-size: 1.8rem;
	margin: 0 auto;
	line-height: 2;
}

#comment-name{
	margin: 5% 0 3% 0;
	text-align: right;
}

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

#book-info{
	display: block;
}

#book-title{
	margin: 0 auto 5% auto;
}

#book-title h3{
	font-size: 36px;
	font-size: 3.6rem;
}

#book-title h4{
	font-size: 40px;
	font-size: 4rem;
}

#book-image{
	width: 100%;
	margin: 0 auto 0 auto;
	text-align: center;
}

#book-image img{
	width: 50%;
}

.book-txt{
	padding: 0 2%;
	box-sizing: border-box;
}

#original-comment{
	display: block;
}
div#comment-photo{
	display: block;
	width: 100%;
	margin: 0 auto 10% auto;
	text-align: center;
}
div#comment-photo p.photo img{
	width: 99%;
}


.comment-txt{
	padding: 0 2%;
	display: block;
	box-sizing: border-box;
	margin-right: auto;
	margin-left: auto;
}
}


/* ---------------------------------
 SP（〜600px）
--------------------------------- */
@media only screen and (max-width: 600px) {
h2.d-box-title{
	width: 100%;
}

#book-title h3{
	font-size: 30px;
	font-size: 3.0rem;
}

#book-title h4{
	font-size: 32px;
	font-size: 3.2rem;
}

.book-txt p{
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.8;
}

#book-image img{
	width: 65%;
}

div#comment-photo{
	display: block;
	width: 100%;
	margin: 0 auto 10% auto;
	text-align: center;
}

div#comment-photo p.photo img{
	width: 99%;
}

p.s-txt{
	text-align: center;
}

.comment-txt h3 {
  display: inline-block;
  position: relative;
  height: 35px;/*高さ*/
  line-height: 35px;/*高さ*/
  vertical-align: middle;
  text-align: center;
  padding: 0 80px 0 18px;/*文字の左右の余白*/
  font-size: 20px;
  font-size: 2rem;
  background: #91844c;
  color: #FFF;
  box-sizing: border-box;
  letter-spacing: 0.5rem;
  margin-bottom: 3%;
}

.comment-txt h3:after {
  border-width: 17px 20px 20px 0px;
}

.comment-txt p{
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.8;
}

/* ------------------------------------------------------------------
 SP 〜 tablet（〜992px）
------------------------------------------------------------------ */
@media screen and (max-width: 992px) {
}

/* ---------------------------------
 PC（993px〜）
--------------------------------- */
@media screen and (min-width: 993px) {
}