@charset "UTF-8";
/* 共通
------------------------------------------------------*/
body {
  background: url(../images/common/bg_flag.png) no-repeat right top fixed, url(../images/common/bg_main.jpg) no-repeat center top fixed #ffff00;
  background-size: 40%, cover;
  font-family: "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 16px;
  color: #111;
  line-height: 1.6em;
  text-align: center;
}

/* SP向け*/
@media screen and (max-width: 768px) {
  body {
    background: url(../images/common/bg_flag.png) no-repeat right top fixed, url(../images/common/bg_main_sp.jpg) no-repeat center top fixed #ffff00;
    background-size: 40%, 100% auto;
  }
}
/*a リンク設定*/
a {
  color: #ff6633;
  text-decoration: underline;
  border: none;
}
a:hover {
  text-decoration: none;
  border: none;
}
a:visited {
  color: #ff6633;
  border: none;
}
a:active {
  color: #ff6633;
  border: none;
}

/*gnavi
------------------------------------------------------*/
/* SP向け*/
@media screen and (max-width: 768px) {
  #gnavi {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    background: #ccc;
    color: #fff;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.2s;
    width: 100%;
  }

  #gnavi ul {
    background: #66cccc;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #gnavi ul li {
    font-weight: bold;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #fff;
    position: relative;
  }
  #gnavi ul li img {
    display: none;
  }
  #gnavi ul li.new:before {
    content: "NEW";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1em 0 0 1em;
    color: #f84828;
    text-shadow: 2px 2px 0 #fff,  -2px -2px 0 #fff,  -2px 2px 0 #fff,  2px -2px 0 #fff,  0px 2px 0 #fff,  0 -2px 0 #fff,  -2px 0 0 #fff,  2px 0 0 #fff;
  }

  #gnavi ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  }

  #gnavi ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
  }

  .navToggle {
    position: fixed;
    z-index: 9999;
    top: 5px;
    right: 5px;
    width: 15%;
    height: 15%;
    background: url(../images/common/btn_menu_off.png) no-repeat right top;
    background-size: contain;
  }

  .navToggle.active {
    background: url(../images/common/btn_menu_on.png) no-repeat right top;
    background-size: contain;
  }

  #gnavi.active {
    transform: translateY(0%);
  }
}
/* PC向け*/
@media screen and (min-width: 769px) {
  .navToggle {
    display: none;
  }

  #gnavi {
    background: url(../images/common/bg_gnavi.png) repeat-x center top;
    background-size: auto 100%;
  }
  #gnavi .gnaviTxt {
    display: none;
  }

  #gnaviInner {
    margin: 0 auto;
    max-width: 1200px;
    padding: 10px 0 15px;
  }
  #gnaviInner ul {
    clear: both;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
  }
  #gnaviInner li {
    position: relative;
    float: left;
    width: 14.2%;
  }
  #gnaviInner li img {
    width: 100%;
    max-width: 160px;
  }

  #smt_menu_wrapper {
    display: none;
  }
}
/*mainCol メインコンテンツ
------------------------------------------------------*/
main {
  width: 100%;
  max-width: 1200px;
  padding: 10px 0 0 0;
  margin: 0 auto;
  text-align: center;
}
main img {
  width: auto;
  max-width: 98%;
}
main h2 {
  margin-bottom: 10px;
}

.mainCol {
  background: url(../images/common/bg_maincol.jpg) repeat;
  padding: 10px;
  margin: 0 auto 50px;
  max-width: 1180px;
  clear: both;
  overflow: hidden;
}

/* SP向け*/
@media screen and (max-width: 768px) {
  .mainCol {
    margin: 0 auto 20px;
  }
}
.mainColInner {
  background: rgba(255, 255, 255, 0.8);
}
.mainColInner h3 {
  background: url(../images/common/bg_stit.png) repeat-x center bottom;
  padding: 30px 0 50px;
  margin-bottom: 20px;
}

.imgsetCol {
  display: flex;
  align-items: flex-start;
}

/*pagetop */
#pagetop {
  height: 168px;
  position: fixed;
  right: 10px;
  bottom: 20px;
}

/* SP向け*/
@media screen and (max-width: 768px) {
  #pagetop {
    position: static;
  }
}
/*footer
------------------------------------------------------*/
footer {
  background: #000;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  color: #FFF;
  clear: both;
  overflow: hidden;
}

/*copyright コピーライト*/
#copyright {
  width: 100%;
  margin: 0px auto;
  padding: 10px 0;
  clear: both;
  overflow: hidden;
}

#txt_bn {
  float: left;
  padding: 0 0 0 10px;
}

#txt_notice {
  float: right;
  color: #cccccc;
  padding: 0 10px 0 0;
}

/* PC向け*/
@media screen and (min-width: 769px) {
  #linkCol {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  /* sns */
  #snsCol {
    width: 15%;
    padding: 0 0 0 10px;
  }
  #snsCol ul {
    width: 150px;
    margin: 5px 0 0;
  }
  #snsCol li {
    float: left;
    margin-right: 10px;
  }
  #snsCol li:last-child {
    margin-right: 0px;
  }
  #snsCol li img {
    width: 40px;
  }

  /* バナー */
  #bnrCol {
    width: 80%;
    padding: 10px 10px 20px;
    margin: 0 auto;
  }
  #bnrCol ul {
    display: flex;
    justify-content: end;
    align-items: flex-start;
  }
  #bnrCol li {
    margin-right: 10px;
  }
  #bnrCol li:last-child {
    margin-right: 0px;
  }

  img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 960px) {
  #bnrCol {
    width: 74%;
    padding: 0;
  }
  #bnrCol ul li {
    width: 23%;
  }
  #bnrCol ul li img {
    width: 100%;
    height: auto;
  }
}
/* SP向け用css
------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .imgsetCol {
    display: inline;
  }
  .imgsetCol img {
    width: 100%;
    max-width: 100%;
  }

  footer #txt_bn {
    float: none;
    padding: 0;
  }
  footer #txt_notice {
    float: none;
    padding: 0;
  }
  footer #snsCol {
    position: static;
    width: 100%;
    padding: 0 0 10px 0;
  }
  footer #snsCol ul {
    display: flex;
    justify-content: center;
  }
  footer #snsCol li {
    margin: 0 5px;
  }
  footer #snsCol img {
    width: 40px;
  }
  footer #bnrCol {
    float: none;
    height: auto;
    width: 96%;
    margin: 0 auto;
  }
  footer #bnrCol ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  footer #bnrCol li {
    /*float: left;*/
    width: 49%;
    margin-right: 0;
  }
  footer #bnrCol li img {
    /*width: 98%;*/
    height: auto;
  }
}
.font_red {
  color: #cc0000;
}

.bg_blue,
.bg_yellow {
  padding: 10px;
}
.bg_blue img,
.bg_yellow img {
  margin-bottom: 10px;
}

.bg_blue {
  background: url(../images/common/bg_blue.jpg) repeat center top;
}

.bg_yellow {
  background: url(../images/common/bg_yellow.jpg) repeat center top;
}

.img2Col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.img2Col li {
  width: 50%;
}
.img2Col li:nth-child(odd) {
  padding: 0 5px 0 0;
}
.img2Col li:nth-child(even) {
  padding: 0 0 0 5px;
}

@media screen and (min-width: 769px) {
  .bg_blue img,
  .bg_yellow img {
    margin-bottom: 30px;
  }

  .img2Col {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .img2Col li {
    width: 50%;
  }
  .img2Col li:nth-child(odd) {
    padding: 0 15px 0 0;
  }
  .img2Col li:nth-child(even) {
    padding: 0 0 0 15px;
  }

  .img2Col_pc {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .img2Col_pc li {
    width: 50%;
  }
  .img2Col_pc li:nth-child(odd) {
    padding: 0 15px 0 0;
  }
  .img2Col_pc li:nth-child(even) {
    padding: 0 0 0 15px;
  }
}
