@charset "UTF-8";

#main_wrap{
  padding: 0;
}

.decimal {
  list-style: decimal;       /* 外側は数字 */
  list-style-position: inside; /* 番号をテキストと揃える */
  margin: 0;                 /* olの外側余白を消す */
  padding: 0 0 0 1.5em;      /* 内側余白で番号を少し右に */
}

.decimal li {
  margin: 0 0 0.5em 0;       /* liの上下マージン調整 */
}

.alpha {
  list-style: lower-alpha;   /* a) b) c) */
  list-style-position: inside; 
  margin: 0;
  padding-left: 1.5em;       /* 外側の数字と揃える */
}

.alpha li {
  margin-bottom: 0.3em;
}

h3 {
  font-size: 20px;
  font-weight: bold;
}

h4 {
  font-size: 18px;
  font-weight: bold;
}

.txt_normal {
  font-weight: normal;
}

a:link {
  text-decoration: underline;
  color: blue;
}

/* i ii iii 表記 */
.roman-only {
  list-style: none !important;
  padding-left: 2.5em;
  counter-reset: roman;
}

.roman-only li {
  list-style: none !important;
  position: relative;
  counter-increment: roman;
  margin-bottom: 0.4em;
}

.roman-only li::marker {
  content: none;
}

.roman-only li::before {
  content: counter(roman, lower-roman);
  position: absolute;
  left: -2em;
}
/* i ii iii 表記 */

/* a) b) 表記 */
.alpha {
  list-style: none;
  counter-reset: alpha;
  padding-left: 2.5em;
}

.alpha > li {
  position: relative;
  counter-increment: alpha;
  margin-bottom: 0.3em;
}

.alpha > li::marker {
  content: none;
}

.alpha > li::before {
  content: counter(alpha, lower-alpha) ")";
  position: absolute;
  left: -2em;
}
/* a) b) 表記 */

.txt_food {
  color: #0070C0;
  font-size: 16px;
}

.txt_bold {
  font-weight: bold;
}

.txt_right {
  text-align: right;
  font-weight: bold;
}

.swiper-container .img_cover{
  padding-bottom: 50%;
}

#aviso_main_content_first {
  padding-top: 40px;
}

#aviso_main_content_final {
  margin-bottom: 80px;
}

#top_news .main_content {
  padding: 30px 0;
}

/* #top_menu */

/* pc */
@media all and (min-width: 701px) {
  #top_menu{
    padding-top: 43px;
    padding-bottom: 51px;
  }
}

/* #sitemap */

/* all */
#sitemap #main .main_content_wrap .sitemap_block_wrap .sitemap_block {
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 20px;
}
#sitemap #main .main_content_wrap .sitemap_block_wrap .sitemap_block_in .list {
  padding-top: 15px;
}

/* pc */
@media all and (min-width: 701px) {
  #sitemap {
    padding-top: 43px;
    padding-bottom: 51px;
  }
  #sitemap #main .main_content_wrap .sitemap_block_wrap {
    padding: 20px 0;
  }
}

/* 
------------------------------  ------------------------------
*/

/* pc */
@media all and (min-width: 1001px) {
}

/* pad以下 */
@media screen and (max-width: 1000px) {
}

/* pad */
@media screen and (min-width: 701px ) and (max-width: 1000px) {
}

/* sp */
@media screen and (max-width: 700px) {
    #aviso_main_content_final {
    margin-bottom: 40px;
  }
}