@charset "utf-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/
/* モバイルレイアウト : 480 px およびそれ以下. */
.topHeader{
    position: relative;
}
.topHeader .catch{
    position: absolute;
    top: 10%;
    left: 4%;
}
.topHeader .catch h1{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    text-align: left;
    
}
.topHeader .catch p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 19px;
    text-align: left;
    line-height: 170%;
    font-weight: bold;
    color: #4d4d4d;
    margin: 0 0;
}
.topHeader img{
    width: 100%;
}
.itemList1{
}
.itemList1 .item{
    display: inline-block;
    vertical-align: middle;
    border: solid 1px #808080;
    border-radius: 8px;
    width: calc(95% / 2);
    box-sizing: border-box;
    margin: 10px 0;
}
.itemList1 .arrow{
    border: none;
    width: 3%;
    margin: 0 1%;
}
.itemList1 p{
    height: 8em;
}
.itemList2{
}
.itemList2 .item{
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    margin: 10px 1%;
    width: calc(94% / 3);
}
.itemList2 .textBox p span{
    font-weight: bold;
    font-size: 19px;
}
.customerVoices{
    padding: 0 50px;
}
.customerVoices .item{
    box-sizing: border-box;
    padding: 5px 5px ;
}
.customerVoices .item > div{
    box-sizing: border-box;
    border: solid 1px #999999;
    vertical-align: top;
    border-radius: 8px;
    overflow: hidden;
}
.customerVoices .flagBox{
    background: #f7b52c;
}
.customerVoices .flagBox p{
    padding: 0.25em 0;
    margin: 0 0;
    color: #fff;
    font-weight: bold;
}
.customerVoices .title{
    color: #f7b52c;
    font-weight: bold;
}
.customerVoices .detail{
    text-align: left;
    width: 90%;
    margin: 0.5em auto;
}
.customerVoices .bx-wrapper {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	background: #fff;
}
.customerVoices .bx-wrapper .bx-prev {
	left: -40px;
}
.customerVoices .bx-wrapper .bx-next {
	right: -40px;
}
.customerVoices .bx-pager{
    display: none;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only print {
.topHeader .catch h1{
    font-size: clamp(11px, 2.1vw, 16px);
}
.topHeader .catch p{
    font-size: clamp(19px, 4.4vw, 34px);
}
.itemList1 .item{
    border-radius: 8px;
    width: 30%;
}
.itemList1 .arrow{
    width: 3%;
    margin: 0 1%;
}
.itemList1 p{
    font-size: clamp(10px, 2vw, 15px)
}
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only print {
.topHeader .catch{
    top: 10%;
    left: 10%;
}
.topHeader .catch h1{
    font-size: 16px;
}
.topHeader .catch p{
    font-size: 34px;
    line-height: 175%;
    margin: 0 0;
}
.itemList1 p{
    font-size: clamp(10px, 1.2vw, 15px) ;
}
}
