@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300&family=Noto+Sans+JP:wght@400;700;900&family=Noto+Serif+JP:wght@400;700&display=swap');
/* Gotic
    font-family: 'Noto Sans JP', sans-serif; gotic
    font-family: 'Noto Serif JP', serif;	micho
    font-family: 'M PLUS Rounded 1c', sans-serif;
*/
/* 標準可変メディア
   メモ : 可変メディアでは、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/ 
*/
/* chromeで画像がぼやける対応 */
img {
    -webkit-backface-visibility: hidden;
}
body{
    width: 100%;
    overflow: hidden;
}
.headerBlock{
    background-color: #E4446C;
    padding: 5px 0 ;
}
.headerBlock h1{
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px;
    color: #fff;
    text-align: left;
    font-weight: normal;
}
.header{
    width: 95%;
    margin: 0 auto;
    max-width: 950px;
}
.contents{
    position: relative;
    width: 95%;
    margin: 0 auto 75px auto;
}
h1{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 19px;
    font-weight:bold;
    text-align: center;
    color: #00A99D;
}
h2{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
    font-weight:bold;
    text-align: left;
    color: #E4446C;
}
h3{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 13px;
    font-weight: bold;
    text-align: left;
    line-height: 160%;
}
h4{
    font-family: 'Noto Serif JP', serif;
	font-size: 13px;
    letter-spacing: 0.1em;
    color: #000;
}
h5{
    font-family: 'Noto Serif JP', serif;
	font-size: 13px;
    letter-spacing: 0.1em;
    color: #000;
}
.content{
}
.content p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
	line-height: 150%;
    font-weight: normal;
    text-align: left;
}
.footerBlock{
    padding: 10px 0;
    background-color: #E4446C;
}
.footer{
    text-align: center;
}
.footer a{
    font-family: 'Noto Sans JP', sans-serif;
    color: #000;
    text-align: center;
}
.footer a p
.footer p{
    font-family: 'Noto Sans JP', sans-serif;
    color:#fff;
    font-size: 8px;
}
.toTop {
	position: fixed;
	bottom: 50px;
	right: 20px;
    z-index: 1000;
}
.toTopShow{
	display:block;
}
.toTopHidden{
	display:none;	
}
.cellFit{
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.linkButton{
    font-family: 'Noto Sans JP', sans-serif;
    text-align: left;
    display: inline-block;
    font-size: 10px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.78);
    color: #000;
    padding: 0.5em;
    border-radius: 5px;
}
.linkButton span{
    display: inline-block;
}
.linkButton:hover{
	opacity: 0.7;
	color:#000;
}
.linkButton:visited{
	color:#000;
}
.stdLink{
    color: #000;
	text-decoration: none;
}
.stdLink:hover{
	color:#000;
	text-decoration: underline;
}
.stdLink:visited{
	color:#000;
}
.errMsg {
	display:none;
	color:#F00;
}
.dataList .fa-exclamation-triangle{
	color: #f1c40f;
}
.narrowRow{
	display: table-row;
}
.wideRow{
	display:none;
}
.errMsg {
	display:none;
	color:#F00;
}
.entryItem {
	display:block;
}
.confItem {
	display:none;
}
.orderForm .fa-exclamation-triangle{
	color: #f1c40f;
}
.mandatory{
    font-size: 0.7em;
    color: #f00;
}
.notice{
    color:#f00;
}
.any{
    font-size: 0.7em;
}
.disabledATag{
    pointer-events: none;
    background-color: #cccccc!important;
}
.scrolledBox a{
    color:#000;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
}

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

@media only screen and (min-width: 768px) {
.headerBlock h1{
    font-size: 18px;
}
h2{
	font-size: 36px;
}
h3{
	font-size: 23px;
}
.content p{
    font-size: 22px;
}
.linkButton{
    font-size: 18px;
}

}