@charset  "utf-8";
/*
-----------------
created 2019.05.20
-----------------
up date
-----------------
table of contents
-----------------
01.default
02.header
03.bread
04.footer
05.pagetop
06.nav
*/

/*
01.default
  ---------------------------------------------------------------------------------------*/
.pc-only{
    display: block;
}
.sp-only{
    display: none;
}
html{
    /*scroll-behavior: smooth;*/
}
body {
    font-size: 10px;
    line-height: 1.7;
    color: rgb(33,33,33);
    font-family: Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN,'ヒラギノ角ゴ ProN W3', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    -webkit-text-size-adjust: 100%;
    background-color: rgb(255,255,255);
    min-width: 980px;
}
/*ie対策*/
main{
    display: block;
}
/*ie対策*/
a:hover{
    text-decoration: underline;
    opacity: 0.6;
}
a.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}
#wrapper {
    text-align: left;
    margin: 0 auto;
    padding:60px 0 0;
}
.container{
    margin: 0 auto;
}
.text_red{
    color:rgb(193, 74, 68);
}
/*
02.header
  ---------------------------------------------------------------------------------------*/
header {
    display: flex;
    align-items: center;
    background-color: rgb(57,181,74);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 46px;
    z-index: 10000;
    -webkit-transform: translate3d(0,0,0);
}
header .box {
    width:100%;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
}
header .box nav ul.login {
    padding: 5px 0 0;
    text-align: right;
}
header .box nav ul.login li {
    display: inline-block;
    width: 150px;
    padding: 0 0 0 10px;
}
header .box div#logo {
    display: inline-block;
    width: 180px;
    padding: 5px 0;
}
header .box nav{
    display:inline-block;
    vertical-align: top;
    position: absolute;
    right: 0;
}
header .box nav ul.login li:nth-of-type(1) a,
header .box nav ul.login li:nth-of-type(2) a,
header .box nav ul.login li:nth-of-type(3) a {
    text-align: center;
    padding: 5px 0;
    font-size: 1.2em;
    color: rgb(255,255,255);
    border-radius: 5px;
    display: block;
    text-decoration: none;
    font-weight: bold;
}
header .box nav ul.login li:nth-of-type(1) a {
    background-color: rgb(205, 125, 45);
}
header .box nav ul.login li:nth-of-type(2) a {
    background-color: rgb(205, 125, 45);
}
header .box nav ul.login li:nth-of-type(3) a {
    background-color: rgb(14, 113, 181);
}
header .box nav ul.login li img{
    width: 20px;
}
/*
03.bread
---------------------------------------------------------------------------------------*/
#bread{
    border-bottom: solid 1px rgb(33,33,33);
}
#bread ul {
    overflow: hidden;
    padding: 5px 0;
    margin: 0 auto 10px;
    max-width: 980px;
}
#bread ul {
    height: 1%;
}
#bread ul li {
    font-size: 1.3em;
    padding: 0 7px 0 0;
    display: inline;
}
#bread ul li a {
    background: url(../img/ico_bread.png) no-repeat 100% 50%;
    padding: 0 20px 0 0;
    color: rgb(102,102,102);
}
#bread ul li a:hover {
    opacity: 1;
}
/*
04.footer
---------------------------------------------------------------------------------------*/
footer {
    background: rgb(70, 70, 70);
    width: 100%;
    color: rgb(0, 0, 0);
}
footer .box{
    padding: 50px 0;
    color: rgb(255, 255, 255);
}
footer a{
    color: rgb(255, 255, 255);
}
footer nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
}

footer nav dl {
    width: 25%;
    padding: 0 20px 0 0;
    justify-content: center;
}

footer nav dl:last-child{
    padding: 0;
}
footer nav dl dt {
    margin: 20px 0;
}
footer nav dl dt span {
    font-weight: bold;
    font-size: 1.6em;
}
footer nav dl dt a:hover {
    background-color: rgb(255,255,255);
}
footer nav dl dd ul li {
    padding: 0 0 15px 1.5em;
    line-height: 1.5em;
    border-left: 1px solid rgb(153, 153, 153);
    margin-left: 1.5em;
    font-size: 1.2em;
}
footer nav dl dd ul li:first-child{
    padding-top: 2px;
}

footer nav dl dd ul li:last-child{
    padding-bottom: 2px;
}

footer .common {
    border-top: solid 5px rgb(221,221,221);
    background-color: rgb(239,239,239);
    padding: 20px 0;
}
footer .common ul {
    text-align: center;
}
footer .common ul li {
    display: inline;
    padding: 0 10px 0 0;
    letter-spacing: 0.5px;
    font-size: 1.3em;
}
footer .common ul li a {
    color: rgb(51,51,51);
    text-decoration: none;
}
footer .common ul li a:hover {
    text-decoration: underline;
}
footer .common p {
    font-size: 1.3em;
    text-align: center;
}

footer .privacy {
    background-color: rgb(255, 255, 255);
    padding: 10px 0;
}
footer .privacy .info {
    width: 950px;
    margin: 0 auto;
    display: table;
}
footer .privacy .info .img {
    display: table-cell;
    vertical-align: middle;
}
footer .privacy .info p {
    display: table-cell;
    vertical-align: middle;
    font-size: 1.2em;
}
footer .privacy .info a{
    color:green;
}

/*登録ボタン*/
footer #pursuit {
    display: none;
}
/*
05.pagetop
---------------------------------------------------------------------------------------*/
#page-top {
	position: fixed;
	bottom: 30px;
	right: 10px;
	z-index: 999999;
	cursor:pointer;
	text-decoration: none;
	text-align: center;
	display: block;
	margin-top: 10px;
}
#page-top:hover {
	text-decoration: none;
}

/*
06.nav
---------------------------------------------------------------------------------------*/
nav#hidden_menu,
nav#global {
    position: relative;
    z-index: 100;
}
nav#hidden_menu {
    border-top: solid 2px rgb(12,93,165);
}
nav#hidden_menu ul {
    background-color: rgb(13,127,211);
    /*	border-top: solid 1px rgb(12,93,165);
        border-bottom: solid 4px rgb(13,127,211);*/
    display: none;
}
.drawer.active nav#hidden_menu ul {
    display: block;
}
nav#hidden_menu ul li {
    border-bottom: solid 1px rgb(12,93,165);
    font-size: 1.4em;
}
nav#hidden_menu ul li a {
    display: block;
    line-height: 40px;
    padding: 0 0 0 14px;
    background: url(../../img/object/ico_next.png) no-repeat 98% 50%;
    background-size: 6px auto;
    color: rgb(255,255,255);
}
/*.drawer.active:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}*/