@charset "UTF-8";
/*  common */
.palt {
  font-feature-settings: "palt";
}

.table_form {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    table-layout: auto;
}

.table_form tr:nth-child(2n) {
    background-color: #fff;
}

.table_form th {
    max-width: 10em;
}

.table_form td {
    width: auto;
}

/* レイアウト */

.memberpage {
    font-size: 1.4rem;
    line-height: 1;
    background-color: #ffcc00;
    padding: 4px;
    display: block;
}


.mainimage {
    height: 140px;
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    
    min-width: 1000px;
}

.mainimage_bg::before {
    content: "";
    display: block;
    height: 160px;
    width: calc( 100% + 20px );
    background-image: url(../img/up/bg_header.png);
    background-size: cover;
    position: absolute;
    margin: -10px;
    filter: blur(5px);
    clip-path: polygon(10px 10px, 100% 10px, 100% 150px, 10px 150px);
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mainimage_bg::before {
    margin-top: 0px;
  }
}


.mainimage_bg::after {
    content: "";
    display: block;
    position: absolute;
    height: 140px;
    width: 960px;
    left : calc(50% - 480px);
    background-image: url(../img/up/bg_header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center
}

.maintext {
    color: #000;
    background: rgba(255, 255, 255, 0.6);
    display: inline-block;
    position: absolute;
    left: calc(50% + 100px);
    top:  calc(50% - 50px);
    padding: 20px;
    filter: blur(0);
}

.text1 {
    font-size: 1.6rem;
    font-weight: bold;
}

.text2 {
    font-size: 1.4rem;
}

.crumbs ul {
    display:flex;
    flex-wrap: wrap;
    justify-content: flex-start; 
}

.footerlink {
    display: flex;
    justify-content: flex-end;
}

.footerlink li {
    padding: 5px 20px 5px 15px;
    background-image: url(../img/icon_arrow_01.png);
    background-repeat: no-repeat;
    background-position: left center;
}

.footerlink li a {
    padding-bottom: 10px;
}

.footer-banner {
    display: flex;
    max-width: 960px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.footer-banner p+p {
    margin-left: 8px;
}

.footer-event {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    width: 560px;
}

.footer-title {
    margin: 0;
    font-size: 1.6rem;
}

.footer-event p {
    margin-top: 8px;
    text-align: center;
}

.footer-event dl {
    margin-top: 8px;
}

.footer-event dt {
    float: left;
    padding: 4px 0;
}
.footer-event dd {
    margin-left: 280px;
    padding: 4px 0;
}

.title-sidenav {
    color: #fff;
    font-size: 1.6rem;
    background-color: #81bd20;
    border-radius: 3px 3px 0 0;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-bottom: 0;
}

.sidenav-item {
    line-height: 1;
    padding: 0 0 0 32px;
    border-bottom: dotted 1px #81bd20;
    background-image: url(../img/icon_arrow_02.png);
    background-repeat: no-repeat;
    background-position: left 8px top 14px;
    max-width: 240px;
}

.sidenav-item>a,
.sidenav-item .more {
    display: block;
    padding: 12px 24px 12px 0;
}

.sidenav-sub {
    margin-top: 12px;
}
.sidenav-sub li {
    padding: 8px;
    border-top: dotted 1px rgba(129, 189, 32, 0.57);
}

.sidenav-sub.level2 {
    font-size: 1.4rem;
    margin-left: 20px;
}

/*meaning*/
a.popup{
    color: #333;
    text-decoration:none;
    background-color:#ffcc00;
    position: relative;
}
a.popup img{
    margin:2px 3px 0 3px;
}

span.popup{
    display:none;
    width:320px;
    position:absolute;
    padding-bottom:10px;
    z-index: 1;
    top: 30px;
    left: -160px;
    background-color: #fff;
    border-radius: 4px;
    border: solid 2px #81bd20;
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.22)
	}

/* beforeで枠線の三角を表現 */
span.popup::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 160px;
  top: -15px;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #81bd20;
  border-left: 15px solid transparent;
}

/* beforeで本体の三角を表現 */
span.popup::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 160px;
  top: -12px;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;
  border-left: 15px solid transparent;
}



span.popup .dt{
    display:block;
    padding-top:20px;
    padding-left:10px;
    padding-right:5px;
    color: #219107;
    text-indent: 0;
}
span.popup rb,
span.popup rt,
span.popup ruby{
    font-weight:bold;
    word-break:break-all;
    white-space: pre-wrap;
    word-wrap:break-word;
}
span.popup .dd{
    display:block;
    text-indent: 0;
    padding-top:10px;
    padding-left:10px;
    padding-right:5px;
}

a.popup:hover{
    cursor:help;
    position:relative;
    zoom:100%;
}

a.popup:hover span.popup{
    display:block;
}

ul.error {
    color: #c00;
    margin-bottom: 20px;
    margin-left: 10px;
}

@media only screen and (max-width: 1020px) and (min-width: 750px) {

}

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

}

/* SP */
@media only screen and (max-width: 750px) {
}
