@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre&family=Noto+Sans+JP:wght@400;700;900&family=Noto+Serif+JP:wght@400;700&display=swap');
/* font
    font-family: 'Noto Sans JP', sans-serif; gotic
    font-family: 'Noto Serif JP', serif;	micho
    font-family: 'Frank Ruhl Libre', 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/ 
*/
header{
    padding: 30px 0 0 0;
    background-image: url("../images/header00-1.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc((100vw * 0.35) - 30px);
}
header > div{
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 10%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 100%);
    height: 100%;
}
.headerTitle{
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 32px;
    color:#fff;
    font-weight: normal;
    text-align: center;
    margin: 0;
}

.headerLogo{
    padding: 10px 7.5% 15px ;
}
.wideMenu{
    display: none;
}
/* Smart menu: */
.main-nav {
/*    background: #eee;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
*/
}

.main-nav:after {
    clear: both;
    content: "\00a0";
    display: block;
    height: 0;
    font: 0px/0 serif;
    overflow: hidden;
}
#main-menu {
    clear: both;
}

/* Mobile menu toggle button */

.main-menu-btn {
    float: right;
    margin: 6px 10px;
    position: relative;
    display: inline-block;
    width: 29px;
    height: 29px;
    text-indent: 29px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* hamburger icon */

.main-menu-btn-icon,
.main-menu-btn-icon:before,
.main-menu-btn-icon:after {
    position: absolute;
    top: 50%;
    left: 2px;
    height: 2px;
    width: 24px;
    background: #fff;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.main-menu-btn-icon:before {
    content: '';
    top: -7px;
    left: 0;
}

.main-menu-btn-icon:after {
    content: '';
    top: 7px;
    left: 0;
}


/* x icon */

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
    height: 0;
    background: transparent;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* hide menu state checkbox (keep it visible to screen readers) */

#main-menu-state {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}


/* hide the menu in mobile view */

#main-menu-state:not(:checked) ~ #main-menu {
    display: none;
}

#main-menu-state:checked ~ #main-menu {
    display: block;
    /*background-color: #fff;*/
}
.staticMenu #main-menu-state:checked ~ #main-menu {
    display: block;
    background-color: rgba(0,0,0,0.3);
}
.sm-clean {
	padding: 0;
	background: none;
	border-radius: 0;
}

.sm-clean a, .sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active {
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
    font-weight: bold;
}
.sm-clean a.has-submenu {
	padding-right: 0;
}
.sm-clean ul a, .sm-clean ul a:hover, .sm-clean ul a:focus, .sm-clean ul a:active {
    font-size: 9px;
	border-left: 8px solid transparent;
    width: 100%;
    text-align: left;
}
.sm-clean ul a:hover, .sm-clean ul a:focus, .sm-clean ul a:active, .sm-clean ul a.highlighted {
/*    background-color: rgba(0,0,0,0.1);
*/    color:#fff;
	/*background: #eeeeee;
	color: #D23600;*/
}
.sm-clean a .sub-arrow {
	background: #000;
}
.sm-clean a .sub-arrow::before {
	content: '▼';
}
.sm-clean a.highlighted .sub-arrow::before {
	content: '▲';
}
/* モバイルレイアウト : 480 px およびそれ以下. */
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
}
.backgroundImage{
    background: linear-gradient(90deg, rgba(0,0,0,1) 5%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,1) 95%), url("../images/back2.png") ;
    background-position: top center;
    
}
#main-menu-state {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}
.sm-clean {
	border-radius: 0;
}
.sm-clean a, .sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active {
	padding: 1em 1em;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
	font-weight: normal;
	line-height: 17px;
	text-decoration: none;
    /*background-color: #fff;*/
}
.sm-clean a > span {
        font-size: 18px;
        width: 6em;
        display: inline-block;
}
.staticMenu{
    position:static;
}
.fixedMenu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0,0,0,0.3);
	z-index: 1000;
}
.contents{
    position: relative;
    width: 95%;
    margin: 0 auto;
}
h1{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 21px;
    font-weight:normal;
    text-align: center;
    color: #00341C;
    margin: 0;
}
h2{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 19px;
    font-weight:normal;
    text-align: left;
    color: #333333;
    padding: 0.1em 0 0.1em 2.25em;
    background-color: #E6E6E6;
    text-indent: -2.25em;
}
h2 span{
    display: inline-block;
    width: 6px;
    height: 100%;
    background-color: #00341C;
    margin: 0 1em;
}
h3{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 13px;
    font-weight: bold;
    text-align: left;
    color: #fff;
    margin: 0;
}
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{
    margin: 30px 0 0 0 ;
}
.content p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
	line-height: 180%;
    font-weight: normal;
    text-align: left;
    color:#808080;
}
footer{
}
.footer {
    max-width: 1095px;
    margin: 100px auto 0 auto;
    width:  95%;
}
.footer .menu{
    text-align: right;
}
.footer .menu a{
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #000;
    text-decoration: none;
}
.footer .menu a:hover{
    color: #000;
    background-color: #EEEEEE;
}
.footer .menu a:visited{
    color: #000;
}
.footer .block2{
    text-align: center;
}
.footer .block2 > div{
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    margin-right: 0;
}
.footer .block2 .companyName{
    font-family: 'Frank Ruhl Libre', serif;
    color: #00341C;
    font-size: 33px;
    margin: 0;
}
.footer .block2 p{
    margin: 0;
    font-size: 16px;
    line-height: 180%;
}
.footer .address{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px!important;
    margin: 0;
}
.footer .telno{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 32px!important;
    margin: 0
}
.footer .sns{
    padding: 20px 0;
}
.footer .sns img{
    width: 52px;
}
.footer .sp{
    display: block;
}
.toTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
.toTop a {
	width: 24px;
	height: 24px;
	border-radius: 14px;
	border: solid 2px #fff;
	background-color: #29ABE2;
	display: block;
	text-align: center;
	font-size: 20px;
	padding: 2px 0 0 0;
    color:#fff;
}
.toTopShow{
	display:block;
}
.toTopHidden{
	display:none;	
}
.cellFit{
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.linkButton{
	display:inline-block;
	color:#fff;
	font-size: 16px;
	text-decoration:none;
	padding: 0.5em 1em;
	border-radius: 4px;
    background-color:#29ABE2;
    font-weight: normal;
	font-family: 'Noto Sans JP', sans-serif;
}
.linkButton:hover{
	opacity: 0.8;
	color:#fff;
}
.linkButton:visited{
	color:#fff;
}
.stdLink{
    color: #000;
	text-decoration: none;
}
.stdLink:hover{
	color:#000;
	text-decoration: underline;
}
.stdLink:visited{
	color:#fff;
}
.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;
}
.title2{
    text-align: center;
}
.title2 hr{
    display: inline-block;
    width: 15%;
    vertical-align: middle;
}
.title2 h2{
    display: inline-block;
    vertical-align: middle;
    width: 9em;
}
.headerImage {
    position: relative;
}
.headerImage .label{
    position: absolute;
    bottom: 25%;
    left: 0;
    width: 90%;
    background: linear-gradient(90deg, rgba(50,50,50,1) 28%, rgba(73,73,73,0.2) 71%);
    padding-left: 10%;
}
.headerImage .label h1{
    color: #fff;
    text-align: left;
    font-size: 18px;
    font-weight: normal;
}
.fatalErrMsg{
    background-color: #fff !important;
    text-align: center !important;
    font-size: 20px !important;
    color:#000 !important;
}
.fixedBanner{
    position: fixed;
    top: calc(100vh * 0.35);
    right: 0;
}
.fixedBanner > div{
    background-color: rgba(255,255,255,0.6);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 10px 0 10px 10px;
    border: solid 1px #f2f2f2;
}
.fixedBanner > div > div{
/*    border-top: dashed 1px #fff;
    border-left: dashed 1px #fff;
    border-bottom: dashed 1px #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
*/    padding: 1em 0.5em;
}
.fixedBanner p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color:#000;
    writing-mode: vertical-rl;
    margin: 0;
    width: 1em;
}
.fixedBanner a{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only print {
.headerBlock .text1{
    font-size: 20px;
}
.imageBlock .logo{
    top: 10%;
    right: 10%;
    width: auto;
        
}
.headerImage .label h1{
    font-size: 22px;
}
.content p{
    font-size: 16px;
}
}

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

@media only print {
header{
    padding: 83px 0 0 0;
    height: calc((100vw * 0.271) - 83px);
}
.headerTitle{
    font-size: 63px;
}
.sm-clean li {
	float: left;
}
#main-menu{
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    font-size: 20px;
}
/* hide the button in desktop view */
.main-menu-btn {
    position: absolute;
    top: -99999px;
}
/* always show the menu in desktop view */
#main-menu-state:not(:checked) ~ #main-menu {
    display: block;
}
.sm-clean > li {
	width: calc(100% / 5);
	text-align: center;
	font-size: 15px;
}
.sm-clean a, .sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active {
	color: #fff;
    background:none;
}
.sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active, .sm-clean a.highlighted {
    background-color: rgba(0,0,0,0.1);
    color:#fff;
}
.sm-clean ul a, .sm-clean ul a:hover, .sm-clean ul a:focus, .sm-clean ul a:active, .sm-clean ul a.highlighted {
	color: #fff;
}
.sm-clean a, .sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active, .sm-clean a.highlighted {
    padding: 1em 0;
}
.footerBlock .footer{
    width:  85%;
}
.footer .block2 > div{
    text-align: left;
    margin-right: 20px;
}
.footer .block2 .companyName{
    font-size: 44px;
}
.footer .telno{
	font-size: 47px!important;
}
h3{
    font-size: 16px;
}
.contents{
    width: 85%;
}
.lastItem{
    background-color: #003F97!important;
    color:#fff!important;
}
.lastItem:hover{
    background-color:rgba(0,63,151,0.8)!important;
}
.gridContainer {
	max-width: 1282px;
	margin: auto;
}
.narrowRow{
	display: none;
}
.wideRow{
	display: table-cell;
}
.fixedBanner p{
    font-size: 21px;
}
}