@charset "UTF-8";
/* コンテンツ */

#toggle {
    box-sizing: content-box !important;
	position:fixed;
    padding: 23px 15px;
    width:30px;
	height:14px;
	top:15px;
	right:30px;
	z-index:3000;
	cursor:pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.3s;
}
#toggle span {
    background-color: #003477;
    width: 100%;
    height: 1px;
    transition: all 0.3s;
}
#toggle span:nth-of-type(1) {
    transform-origin: top left;
}
#toggle span:nth-of-type(2) {
    transform-origin: center left;
    opacity: 1;
}
#toggle span:nth-of-type(3) {
    transform-origin: bottom left;
}
#toggle.close span:nth-of-type(1) {
    transform: rotate(24.145541960422deg) scale(1.09587921, 1);
}
#toggle.close span:nth-of-type(2) {
    opacity: 0;
}
#toggle.close span:nth-of-type(3) {
    transform: rotate(-24.145541960422deg) scale(1.09587921, 1);
}


#fix_foot {
	display:none;
}


#navi {
    display: none;
	position:fixed;
	z-index:5000;
	width:100%;
    height: calc((var(--vh, 1vh) * 100) - 90px);
    overflow-x: hidden;
	top:90px;
	right:-100%;
    opacity: 0;
    background-color: #ffe9b3;
}
.navi_box {
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    box-sizing: border-box;
    width: 90%;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navi_section {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    width: 100%;
    opacity: 0;
    margin-top: 2em;
}
.navi_box section {
    box-sizing: border-box;
    text-align: left;
}
.navi_section section ul {
    margin-bottom: 2em;
    width: 100%;
    margin-left: 0 !important;
}
.navi_section section ul li {
    position: relative;
    font-size: 1.24em;
    line-height: 1.4;
    font-weight: bold;
    color: #003477;
}
.navi_section section ul li a {
    color: #003477;
    display: block;
    padding: 0.5em 0;
    transition: all 0.3s;
}
.navi_section section ul li ul li {
    font-size: 0.84em;
    font-weight: normal;
}
.navi_section section ul li ul li a {
    padding-left: 1em;
}
.navi_section section ul li ul li a::before {
    content: '';
    position: absolute;
    background-color: #003477;
    width: 0.5em;
    height: 1px;
    left: 0;
    top: 50%;
}
.navi_section section ul li a:hover {
    opacity: 0.5;
}

@media screen and (min-width: 961px) {
#navi {
    background-color: rgba(255,255,255,0.9);
}
.navi_section section ul li span {
    display: block;
    padding: 0.5em 0 0.3em;
    border-bottom: 1px solid #003477;
    margin-bottom: 0.5em;
}
.navi_acc {
    width: 250px !important;
}
.navi_acc ul li {
    height: 4em;
}
.navi_acc ul li a {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    color: #fff !important;
    background: linear-gradient(to right, #108183, #a3ca2e);
    display: flex !important;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    border-radius: 0.3em;
    transition: all 0.3s;
}
.navi_acc ul:nth-child(2) li a {
    background:linear-gradient(to right, #337cc0, #71c6d5);
}
.navi_acc ul li a:hover {
    opacity: 0.7;
}
}


#header {
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    z-index:1000;
    background-color: #003477;
    transition: all 0.3s;
}
.hd_box {
    position: relative;
	width:100%;
	height:90px;
    transition: all 0.3s;
}
#header h1 {
    position:absolute;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    top: 20px;
	left:30px;
	height:50px;
    line-height: 0;
    transition: all 0.3s;
}
#header h1 a {
    display: block;
    height:100%;
}
#header h1 a img {
	height:100%;
    transition: all 0.3s;
}
#header h1 a:last-of-type {
	height:20px;
    margin-left: 30px;
}

#gnavi {
    position: absolute;
    right: 120px;
    top: 25px;
}
#gnavi ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
#gnavi ul li {
    width: 9em;
    height: 40px;
    margin-left: 10px;
}
#gnavi ul li a {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 0.5em;
    color: #fff;
    background: linear-gradient(to right, #108183, #a3ca2e);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.08em;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    transition: all 0.3s;
}
#gnavi ul li:nth-child(2) a {
    background: linear-gradient(to right, #337cc0, #71c6d5);
}
#gnavi ul li a:hover {
    opacity: 0.7;
}


@media screen and (max-width: 960px) {
#toggle {
    padding: 18px 10px;
    width:30px;
	height:14px;
	top:10px;
	right:10px;
}

#navi {
    height: calc((var(--vh, 1vh) * 100) - 70px);
	top:70px;
}
.navi_box {
    padding: 4em 4em 10em;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 95%;
    height: auto;
    min-height: 100%;
}
.navi_section {
    display: block;
}
.navi_box section {
    box-sizing: border-box;
    text-align: left;
}
.accordion_on {
    transition: all 0.3s;
}
.accordion_on span {
    position: relative;
    display: block;
    cursor: pointer;
}
.accordion_on.open {
    background-color: rgba(255,255,255,0.3);
}
.accordion_on ul {
    display: none;
}
.accordion_on span::before,.accordion_on span::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1px;
    background-color: #003477;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.1s;
}
.accordion_on span::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.4s;
}
.accordion_on.open span::before {
    opacity: 0;
}
.accordion_on.open span::after {
    transform: translateY(-50%) rotate(180deg);
}
.navi_section section ul {
    margin-bottom: 0;
    width: 100%;
}
.navi_section section ul li {
    position: relative;
    border-bottom: 1px solid #003477;
}
.navi_section section ul li span {
    display: block;
    padding: 0.8em 1em;
}
.navi_section section ul li a {
    padding: 0.8em 1em;
}
.navi_section section ul li ul li a {
    padding-left: 2.24em;
}
.navi_section section ul li ul li a::before {
    content: '';
    position: absolute;
    background-color: #003477;
    width: 0.5em;
    height: 1px;
    left: 1.24em;
    top: 50%;
}
.navi_section section ul li ul li:last-child {
   border-bottom-width: 0;
   margin-bottom: 1.5em;
}

#fix_foot {
	display:block;
	position:fixed;
    padding: 0;
	width:100%;
	height:60px;
	bottom:-70px;
	left:0;
	z-index:6000;
    background-color: #fff;
    border-top: 1px solid #fff;
}
#fix_foot ul {
	text-align:center;
	width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#fix_foot ul li {
    box-sizing: border-box;
    position: relative;
    width: 50%;
    border-right: 1px solid #fff;
}
#fix_foot ul li:nth-child(4) {
    border-right-width: 0;
}
#fix_foot ul li a {
    font-weight:500;
	display:block;
	line-height:60px;
	text-decoration:none;
    font-weight: bold;
	color:#fff;
    background: linear-gradient(to right, #108183, #a3ca2e);
    font-size: 1.4em;
    letter-spacing: 2px;
    text-indent: 2px;
	transition:all 0.3s;
}
#fix_foot ul li:nth-child(2) a {
    background: linear-gradient(to right, #337cc0, #71c6d5);
}
#fix_foot ul li:nth-child(3) a {
    letter-spacing: 0;
    text-indent: 0;
}
#fix_foot ul li a:hover {
    opacity: 0.7;
}
#fix_foot ul li::after {
    content: "";
    position: absolute;
    left: 14px;
    top: -5px;
    width: 30px;
    height: 30px;
    background-position: center;
    background-size: contain;
    border-radius: 50%;
    pointer-events: none;
}
#fix_foot ul li:nth-child(1)::after {
    background-image: url("../img/ft_icon1.png");
    border: 1px solid #17857f;
}
#fix_foot ul li:nth-child(2)::after {
    background-image: url("../img/ft_icon2.png");
    border: 1px solid #337cc0;
}

.hd_box {
	height:70px;
}
#header h1 {
    top: 12px;
	left:20px;
	height:46px;
}
#header h1 a:last-of-type {
	height:40%;
    margin-left: 20px;
}
#gnavi {
    display: none;
}

}

@media screen and (max-width: 560px) {

#toggle {
    padding: 12px 4px;
    width:30px;
	height:14px;
	top:5px;
	right:5px;
}

#navi {
    height: calc((var(--vh, 1vh) * 100) - 50px);
	top:50px;
}
.navi_box {
    padding: 3em 3em 9em;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 95%;
    height: auto;
    min-height: 100%;
}

.hd_box {
	height:50px;
}
#header h1 {
    top: 10px;
	left:20px;
	height:30px;
}
#header h1 a:last-of-type {
	height:40%;
    margin-left: 20px;
}

#fix_foot ul li a {
    font-size: 1.4em;
}

}



