/*******************************************************************************
 * Common Style
 * #3261AB -> maincolor
 * #1E3A67 -> sub 1st
 * #D5E0F1 -> sub 2nd
 *
 ******************************************************************************/
html {
	height: 100%;
}

body {
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 0px;
	padding: 0px;
	letter-spacing: normal;
}

img {
	max-width: 100%;
}

/*******************************************************************************
 * FW固有(基本修正不要)
 ******************************************************************************/

 /* お待ちください */
.prevention-masked {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3040;
    background-color: #000000;
    filter: alpha(opacity=50);
    opacity: .5;
}

/* input type="number" のスピンボタンを消す */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

/* jquery autocomplete */
.ui-autocomplete {
	max-height: 180px;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 20px;
}

/*******************************************************************************
 * ここから下に記述
 ******************************************************************************/
 /* ul li の list-style-typeを指定しない */
ul li {
    list-style: none;
}

/* <p>のmargin-bottomを0とする */
p {
    margin-bottom: 0px;
}

/* fishpassでよく使う青色 -> FishPassBlue */
.fpbBack {
    color: white;   
    background-color: #2670ba;
}

/* 一覧の未選択時に使う色 -> FishPassSkyBlue */
.fpsbBack {
    color: white;
    background-color: #bad9f2;
}

/* 文章などの見出し */
.midashi {
    color: #2670ba;
    border-bottom:solid 1px #2670ba;
}

/* padding-right, padding-leftを0にする */
.no-padding-rl {
    padding-right: 0;
    padding-left: 0;
}

/*******************************************************************************
 * header
 ******************************************************************************/
header ul li {
    color:#2670ba;
    font-size:14px;
}

.header-menu {
    margin:0;
    padding:0;
    width:100%;
    overflow:hidden; /* ulに高さを持たせるため */
    text-align:center;
}

.header-menu li {
    padding: 0.9em 0.25em;
    cursor: pointer;
    min-width:20%;
    max-width:25%;
}

.header-menu li img {
	padding-right: 0.15em;
	vertical-align: bottom;
}

.header-contents img {
	max-width: 30px;
}

.list-inline>li {
	display: inline-block;
}

.list-inline-item:not(:last-child) {
	margin-right: 0.5rem;
}

.header-menu a {
	
	font-size: 14px;
}

.myheader a {
    color: #2670ba;
}

/* PC用 */
.blueline {
    border-bottom: solid 2px #2670ba;
    margin-bottom: 2em;
}

.header-menu-item {
    text-align: right;
    vertical-align: bottom;
}
.header-menu-item a {
    white-space: nowrap;
    font-size: 1.6rem;
}
.header-menu-item a:hover {
    text-decoration: underline;
}
.header-menu-item a span {
    padding-left: 0.4rem;
}

/*******************************************************************************
 * 先頭に戻る
 ******************************************************************************/
.jump_pagetop {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 100;
}

.btn_pagetop {
    color: white;
    background-color: rgba(169, 169, 169, 0.75);
    padding: 0.5em 1.0em;
}

/*******************************************************************************
 * footer
 ******************************************************************************/
.footer-info {
    font-size: 12px;
}

.footer a {
    color: black;
}

.footer ul {
    padding: 0;
    margin: 0;
}

.footer ul li {
    display: inline-block; 
    margin: 0 8px 8px;
    color:black;
}

.footer-menu {
    padding: 0.5em 0;
	display: flex;
	align-items: baseline; 
	justify-content: space-between;
}

.footer-copyright {
    min-width: 250px;
    text-align: right;
}

/*******************************************************************************
 * 丸の中に文字があるデザイン（背景色,width,height=line-heightは各々で設定）
 ******************************************************************************/
.ball {
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    margin: 0px auto;
    letter-spacing: 0.1em;
}

/*******************************************************************************
* スライダー
*******************************************************************************/
/* 矢印 */
.flickity-prev-next-button .flickity-button-icon {
    width: 90%!important;
}

/* ページドット */
.flickity-page-dots .dot {
    background-color:#bad9f2 !important;
}

.flickity-page-dots .is-selected {
    background-color: #2670ba  !important;
}

