@charset "UTF-8";
.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

.display-block {
  display: block;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.clearfix::before, .clearfix::after {
  content: "";
  display: table;
}
.clearfix::after {
  clear: both;
}

.clear {
  clear: both;
}

/* show only  SP/PC
-------------------------------*/
.sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-only {
    /* sp */
    display: block !important;
  }
}

.sp-only-2 {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-only-2 {
    /* sp */
    display: inline-block !important;
  }
}

.pc-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc-only {
    /* sp */
    display: none !important;
  }
}

.pc-only-2 {
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
  .pc-only-2 {
    /* sp */
    display: none !important;
  }
}

.xl-only {
  display: none;
}
@media screen and (min-width: 1481px) {
  .xl-only {
    /* xl */
    display: block;
  }
}

/* font
-------------------------------*/
.bold {
  font-weight: bold;
}

/* margin
-------------------------------*/
/* padding
-------------------------------*/
.category-links {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .category-links {
    /* pc */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto 43px;
  }
}
.category-links__item {
  display: inline-block;
  margin-bottom: 8px;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .category-links__item {
    /* pc */
    width: calc(100% / 3 - 30px);
    margin-bottom: 20px;
  }
  .category-links__item:not(:nth-of-type(3n)) {
    margin-right: 40px;
  }
}
.category-links__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 60px;
  padding: 3px 8px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid #707070;
}
@media screen and (min-width: 768px) {
  .category-links__link {
    /* pc */
    padding: 16px;
    font-size: 2rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .category-links__link:hover {
    opacity: 0.7;
  }
}


.year-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .year-links {
    /* pc */
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 58px;
    margin-left: 104px;
  }
}

.year-links__item a {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .year-links__item a {
    /* pc */
    padding-right: 20px;
    font-size: 2rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .year-links__item a:hover {
    opacity: 0.7;
  }
}
.year-links__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-left: 6px solid #D0121B;
  border-bottom: 4px solid transparent;
}
@media screen and (min-width: 768px) {
  .year-links__item a::after {
    /* pc */
    border-top: 6px solid transparent;
    border-left: 8px solid #D0121B;
    border-bottom: 6px solid transparent;
  }
}

/*
 * cmn_layout.css
 */
.basic_title01 {
  margin-bottom: 25px;
  padding: 10px 15px;
  font-size: 1.8rem;
  line-height: 1.54;
  font-weight: 700;
  background: #D0121B;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .basic_title01 {
    /* pc */
    padding: 19px 15px 19px 25px;
    font-size: 2.6rem;
  }
}

.post_content {
  font-size: 3.33333vw;
  line-height: 2.058;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .post_content {
    /* pc */
    font-size: 1.7rem;
  }
}
.post_content p {
  margin-bottom: 2.66667vw;
}
@media screen and (min-width: 768px) {
  .post_content p {
    /* pc */
    margin-bottom: 40px;
  }
}

.tag {
  display: inline-block;
  border: 1px solid #707070;
  padding: 2px 14px;
}
.tag.news {
  border-color: #D0121B;
  color: #D0121B;
}
.tag.event {
  border-color: #0753B7;
  color: #0753B7;
}





/*-------------------------------------------------
お知らせ用
----------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.h_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.h_info p {
  margin-bottom: 0;
}

/* heading */
.post_content h2 {
  position: relative;
  padding-left: 20px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-size: 5.5vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .post_content h2 {
    /* pc */
    padding: 5px 0;
    margin-bottom: 50px;
    padding-left: 34px;
    font-size: 2.4rem;
  }
}
.post_content h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: #D0121B;
  border-radius: 0 0 10px 0;
}
@media screen and (min-width: 768px) {
  .post_content h2::before {
    /* pc */
    width: 15px;
  }
}

.post_content h3 {
  position: relative;
  padding-left: 7vw;
  line-height: 2;
  letter-spacing: 0.1em;
  font-size: 5vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .post_content h3 {
    /* pc */
    margin-bottom: 40px;
    padding-left: 34px;
    font-size: 2.2rem;
  }
}
.post_content h3::before {
  content: "";
  position: absolute;
  top: 3vw;
  left: 0;
  width: 4vw;
  height: 4vw;
  background: #D0121B;
}
@media screen and (min-width: 768px) {
  .post_content h3::before {
    /* pc */
    top: 16px;
    width: 16px;
    height: 16px;
  }
}

.post_content h4 {
  line-height: 2;
  letter-spacing: 0.1em;
  color: #D0121B;
  font-size: 5vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .post_content h4 {
    /* pc */
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
}

.post_content h5 {
  position: relative;
  padding-bottom: 8px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #707070;
  font-size: 5vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .post_content h5 {
    /* pc */
    margin-bottom: 25px;
    font-size: 2.2rem;
  }
}

.post_content h6 {
  position: relative;
  margin-bottom: 30px;
  font-size: 1.9rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .post_content h6 {
    /* pc */
    margin-bottom: 20px;
  }
}

.post_content blockquote {
  padding: 2.66667vw;
  border-radius: 13px;
  background-color: #ebebeb;
  margin-bottom: 40px;
}

/* margin-bottom */
.mb_0 {
  margin-bottom: 0 !important;
}

.mb_5 {
  margin-bottom: 5px !important;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.mb_15 {
  margin-bottom: 15px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.mb_40 {
  margin-bottom: 40px !important;
}

.mb_50 {
  margin-bottom: 50px !important;
}

.mb_60 {
  margin-bottom: 60px !important;
}

/* margin-left */
.ml_0 {
  margin-left: 0 !important;
}

.ml_5 {
  margin-left: 5px !important;
}

.ml_10 {
  margin-left: 10px !important;
}

.ml_15 {
  margin-left: 15px !important;
}

.ml_17 {
  margin-left: 17px !important;
}

.ml_20 {
  margin-left: 20px !important;
}

.ml_30 {
  margin-left: 30px !important;
}

.ml_40 {
  margin-left: 40px !important;
}

.ml_50 {
  margin-left: 50px !important;
}

.ml_75 {
  margin-left: 75px !important;
}

.ml_150 {
  margin-left: 150px !important;
}

/* margin-right */
.mr_0 {
  margin-right: 0 !important;
}

.mr_5 {
  margin-right: 5px !important;
}

.mr_10 {
  margin-right: 10px !important;
}

.mr_15 {
  margin-right: 15px !important;
}

.mr_20 {
  margin-right: 20px !important;
}

.mr_30 {
  margin-right: 30px !important;
}

.mr_40 {
  margin-right: 40px !important;
}

/* margin-top */
.mt-45 {
  margin-top: -6vw !important;
}

.mt-85 {
  margin-top: -11vw !important;
}

.mt_0 {
  margin-top: 0 !important;
}

.mt_5 {
  margin-top: 5px !important;
}

.mt_10 {
  margin-top: 10px !important;
}

.mt_15 {
  margin-top: 15px !important;
}

.mt_20 {
  margin-top: 20px !important;
}

.mt_25 {
  margin-top: 25px !important;
}

.mt_30 {
  margin-top: 30px !important;
}

.mt_35 {
  margin-top: 35px !important;
}

.mt_40 {
  margin-top: 40px !important;
}

.mt_45 {
  margin-top: 45px !important;
}

.mt_50 {
  margin-top: 50px !important;
}

.mt_100 {
  margin-top: 100px !important;
}

/* padding-left */
.pl_0 {
  padding-left: 0 !important;
}

.pl_10 {
  padding-left: 10px !important;
}

/* padding-right */
.pr_0 {
  padding-right: 0 !important;
}

.pr_10 {
  padding-right: 10px !important;
}

/* padding-top */
.pt_5 {
  padding-top: 5px !important;
}

.pt_9 {
  padding-top: 9px !important;
}

.pt_10 {
  padding-top: 10px !important;
}

.pt_15 {
  padding-top: 15px !important;
}

.pt_20 {
  padding-top: 20px !important;
}

.pt_25 {
  padding-top: 25px !important;
}

.pt_30 {
  padding-top: 30px !important;
}

.pt_50 {
  padding-top: 50px !important;
}

/* padding-bottom */
.pb_0 {
  padding-bottom: 0px !important;
}

.pb_30 {
  padding-bottom: 30px !important;
}

/* text-align */
.left {
  text-align: left !important;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

/* vertical-align */
.bottom {
  vertical-align: bottom !important;
}

.middle {
  vertical-align: middle !important;
}

.top {
  vertical-align: top !important;
}

.ver_t-bottom {
  vertical-align: text-bottom !important;
}

/* width */
.w_40 {
  width: 40px !important;
}

.w_50 {
  width: 50px !important;
}

.w_60 {
  width: 60px !important;
}

.w_70 {
  width: 70px !important;
}

.w_80 {
  width: 80px !important;
}

.w_90 {
  width: 90px !important;
}

.w_100 {
  width: 100px !important;
}

.w_110 {
  width: 110px !important;
}

.w_120 {
  width: 120px !important;
}

.w_130 {
  width: 130px !important;
}

.w_140 {
  width: 140px !important;
}

.w_150 {
  width: 150px !important;
}

.w_160 {
  width: 160px !important;
}

.w_170 {
  width: 170px !important;
}

.w_180 {
  width: 180px !important;
}

.w_190 {
  width: 190px !important;
}

.w_200 {
  width: 200px !important;
}

.w_210 {
  width: 210px !important;
}

.w_220 {
  width: 220px !important;
}

.w_230 {
  width: 230px !important;
}

.w_240 {
  width: 240px !important;
}

.w_250 {
  width: 250px !important;
}

.w_260 {
  width: 260px !important;
}

.w_270 {
  width: 270px !important;
}

.w_280 {
  width: 280px !important;
}

.w_290 {
  width: 290px !important;
}

.w_300 {
  width: 300px !important;
}

.w_310 {
  width: 310px !important;
}

.w_320 {
  width: 320px !important;
}

.w_325 {
  width: 325px !important;
}

.w_330 {
  width: 330px !important;
}

.w_340 {
  width: 340px !important;
}

.w_350 {
  width: 350px !important;
}

.w_360 {
  width: 360px !important;
}

.w_370 {
  width: 370px !important;
}

.w_380 {
  width: 380px !important;
}

.w_390 {
  width: 390px !important;
}

.w_400 {
  width: 400px !important;
}

.w_410 {
  width: 410px !important;
}

.w_420 {
  width: 420px !important;
}

.w_430 {
  width: 430px !important;
}

.w_440 {
  width: 440px !important;
}

.w_450 {
  width: 450px !important;
}

.w_457 {
  width: 457px !important;
}

.w_460 {
  width: 460px !important;
}

.w_490 {
  width: 490px !important;
}

.w_500 {
  width: 500px !important;
}

.w_540 {
  width: 540px !important;
}

.w_548 {
  width: 548px !important;
}

.w_560 {
  width: 560px !important;
}

.w_590 {
  width: 590px !important;
}

.w_600 {
  width: 600px !important;
}

.w_635 {
  width: 635px !important;
}

.w_646 {
  width: 646px !important;
}

.w_650 {
  width: 650px !important;
}

.w_710 {
  width: 710px !important;
}

.note02 {
  display: block;
  margin-left: 0.2em;
  text-indent: -0.2em;
}

.note {
  display: block;
  margin-left: 1em;
  text-indent: -1em;
}

.note15 {
  display: block;
  margin-left: 1.5em;
  text-indent: -1.5em;
}

.note2 {
  display: block;
  margin-left: 2em;
  text-indent: -2em;
}

.note25 {
  display: block;
  margin-left: 2.5em;
  text-indent: -2.5em;
}

.note_number {
  display: block;
  margin-left: 1.9em;
  text-indent: -1.9em;
}

/* table */
.post_content table {
  border-bottom: 1px solid #cdcdcd;
  border-right: 1px solid #cdcdcd;
  width: 100%;
  margin-bottom: 50px;
}

.post_content table tr th,
.post_content table tr td {
  background-color: #fff;
  border-left: 1px solid #cdcdcd;
  border-top: 1px solid #cdcdcd;
  padding: 10px;
  vertical-align: middle;
}

.post_content table tr th {
  background: #F5F5F5;
}

.post_content table tr .bl_0 {
  border-left-width: 0;
}

.post_content table tr .bt_2 {
  border-top-width: 2px;
}

.post_content table tr .bt_dotted {
  border-top-style: dotted;
}

.post_content table tr .nowrap {
  white-space: nowrap;
}

.post_content table thead tr th {
  text-align: center;
}

.post_content table p {
  margin-bottom: 0;
}

.post_content table img {
  max-width: 100%;
}

#content .news_table {
  margin-left: 15px;
  margin-top: 20px;
}

@media only screen and (min-width: 768px), print {
  .post_content table img {
    max-width: initial;
  }
}
/* background-color */
.bg_blue {
  background-color: #e6f6f9 !important;
}

.bg_lightblue {
  background-color: #f2fbfd !important;
}

.bg_gray {
  background-color: #f7f7f7 !important;
}

.bg_yellow {
  background-color: #fff549 !important;
}

.bg_pink {
  background-color: #FCEFE9 !important;
}

.post_content a {
  text-decoration: underline;
  position: relative;
}

.post_content a.basic_btn01 {
  text-decoration: none;
}

.post_content .gray_border_1_boxp {
  border: 1px solid #ccc;
  padding: 15px;
}

.post_content a[target=_blank],
.post_content a[href$=".pdf"] {
  vertical-align: middle;
}

.post_content a[target=_blank]:after,
.post_content a[href$=".pdf"]:after {
  position: static;
  display: inline-block;
  margin-top: 0;
  margin-left: 5px;
  margin-right: 5px;
  content: "";
  vertical-align: middle;
  border: none !important;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}

.post_content a.noicon[target=_blank]:after,
.post_content a.noicon[href$=".pdf"]:after {
  display: none;
  vertical-align: inherit;
}

.post_content a.blank {
  margin-right: 10px;
  vertical-align: inherit;
}

.post_content a.blank[target=_blank]:after {
  width: 12px;
  height: 12px;
  background-image: url(../img/ico_external02.png);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12px;
  flex: 0 0 12px;
}

.post_content a.basic_btn01[target=_blank].red:after {
  width: 12px;
  height: 12px;
  background-image: url(../img/ico_external04.png);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12px;
  flex: 0 0 12px;
}

.post_content a.pdf[href$=".pdf"]:after {
  width: 20px;
  height: 20px;
  background-image: url(../img/ico_pdf.png) !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
}

.post_content a.basic_btn01[href$=".pdf"]:after {
  width: 20px;
  height: 20px;
  background-image: url(../img/ico_pdf.png) !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
}

.post_content ul {
  margin-bottom: 6.66667vw;
}

.post_content ul > li {
  position: relative;
  margin-top: 2.66667vw;
  padding-left: 5.33333vw;
}

.post_content ul > li:before {
  position: absolute;
  top: 0.6em;
  left: 0;
  display: block;
  width: 2.66667vw;
  height: 2.66667vw;
  content: "";
  background-color: #606060;
}

.post_content ul.link_list > li {
  padding-left: 0;
}

.post_content ul.link_list > li:before,
.post_content ul.text_link_list01 > li:before {
  display: none;
}

@media only screen and (min-width: 768px), print {
  .post_content ul {
    margin-bottom: 50px;
  }

  .post_content ul > li {
    margin-top: 20px;
    padding-left: 25px;
  }

  .post_content ul > li:before {
    top: 11px;
    width: 13px;
    height: 13px;
  }
}
.post_content ol {
  margin-bottom: 6.66667vw;
}

.post_content ol > li {
  position: relative;
  margin-top: 2.66667vw;
  padding-left: 8vw;
  counter-increment: table-ol;
}

.post_content ol > li:before {
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 5.33333vw;
  height: 5.33333vw;
  content: counter(table-ol);
  background-color: #e3e3e3;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (min-width: 768px), print {
  .post_content ol {
    margin-bottom: 50px;
  }

  .post_content ol > li {
    margin-top: 20px;
    padding-left: 50px;
  }

  .post_content ol > li:before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 32px;
    height: 32px;
  }
}
.post_content hr {
  border-bottom: 2px solid #e2e2e2;
  margin: 20px;
}

.post_content strong {
  font-weight: bold;
}

.post_content em {
  font-style: italic;
}

/* float */
.f_left {
  float: left;
}

.f_right {
  float: right;
}

/* ==========================================================
!inline
========================================================== */
.sp_only {
  display: block;
}

.pc_only {
  display: none;
}

.bold {
  font-weight: bold;
}

.ta_r {
  text-align: right;
}

.ta_l {
  text-align: left;
}

.ta_c {
  text-align: center;
}

.ta_c img {
  margin-right: auto;
  margin-left: auto;
}

.bgcw {
  background-color: #fff;
}

.bgnone {
  background: none;
}

.font_ss {
  font-size: 2.53521vw;
}

.font_s {
  font-size: 3.09859vw;
}

.font_l {
  font-size: 4.50704vw;
}

.font_ll {
  font-size: 5.07042vw;
}

.font_lll {
  font-size: 5.6338vw;
}

.c_red {
  color: #e30000;
}

.c_blue {
  color: #0077bf;
}

.c_cyan {
  color: #00c4ff;
}

.c_magenta {
  color: #f42c62;
}

.pd0 {
  padding: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pr10 {
  padding-right: 10px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mt5 {
  margin-top: 0.66667vw !important;
}

.mt10 {
  margin-top: 1.33333vw !important;
}

.mt15 {
  margin-top: 2vw !important;
}

.mt20 {
  margin-top: 2.66667vw !important;
}

.mt25 {
  margin-top: 3.33333vw !important;
}

.mt30 {
  margin-top: 4vw !important;
}

.mt35 {
  margin-top: 4.66667vw !important;
}

.mt40 {
  margin-top: 5.33333vw !important;
}

.mt45 {
  margin-top: 6vw !important;
}

.mt50 {
  margin-top: 6.66667vw !important;
}

.mt55 {
  margin-top: 7.33333vw !important;
}

.mt60 {
  margin-top: 8vw !important;
}

.mt65 {
  margin-top: 8.66667vw !important;
}

.mt70 {
  margin-top: 9.33333vw !important;
}

.mt75 {
  margin-top: 10vw !important;
}

.mt80 {
  margin-top: 10.66667vw !important;
}

.mt85 {
  margin-top: 11.33333vw !important;
}

.mt90 {
  margin-top: 12vw !important;
}

.mt95 {
  margin-top: 12.66667vw !important;
}

.mt100 {
  margin-top: 13.33333vw !important;
}

.mt105 {
  margin-top: 14vw !important;
}

.mb5 {
  margin-bottom: 0.66667vw !important;
}

.mb10 {
  margin-bottom: 1.33333vw !important;
}

.mb15 {
  margin-bottom: 2vw !important;
}

.mb20 {
  margin-bottom: 2.66667vw !important;
}

.mb25 {
  margin-bottom: 3.33333vw !important;
}

.mb30 {
  margin-bottom: 4vw !important;
}

.mb35 {
  margin-bottom: 4.66667vw !important;
}

.mb40 {
  margin-bottom: 5.33333vw !important;
}

.mb45 {
  margin-bottom: 6vw !important;
}

.mb50 {
  margin-bottom: 6.66667vw !important;
}

.mb55 {
  margin-bottom: 7.33333vw !important;
}

.mb60 {
  margin-bottom: 8vw !important;
}

.mb65 {
  margin-bottom: 8.66667vw !important;
}

.mb70 {
  margin-bottom: 9.33333vw !important;
}

.mb75 {
  margin-bottom: 10vw !important;
}

.mb80 {
  margin-bottom: 10.66667vw !important;
}

.mb85 {
  margin-bottom: 11.33333vw !important;
}

.mb90 {
  margin-bottom: 12vw !important;
}

.mb95 {
  margin-bottom: 12.66667vw !important;
}

.mb100 {
  margin-bottom: 13.33333vw !important;
}

.mb105 {
  margin-bottom: 14vw !important;
}

.mr5 {
  margin-right: 0.66667vw !important;
}

.mr10 {
  margin-right: 1.33333vw !important;
}

.mr15 {
  margin-right: 2vw !important;
}

.mr20 {
  margin-right: 2.66667vw !important;
}

.mr25 {
  margin-right: 3.33333vw !important;
}

pre {
  padding: 4vw;
  border-radius: 13px;
  background-color: #eee;
}

p a {
  text-decoration: underline;
}

.notax .no_tax {
  display: none;
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
  .sp_only {
    display: none;
  }

  .pc_only {
    display: block;
  }

  .font_ss {
    font-size: 1rem;
  }

  .font_s {
    font-size: 1.4rem;
  }

  .font_l {
    font-size: 2rem;
  }

  .font_ll {
    font-size: 2.5rem;
  }

  .font_lll {
    font-size: 2.8rem;
  }

  .mb5 {
    margin-bottom: 5px !important;
  }

  .mb10 {
    margin-bottom: 10px !important;
  }

  .mb15 {
    margin-bottom: 15px !important;
  }

  .mb20 {
    margin-bottom: 20px !important;
  }

  .mb25 {
    margin-bottom: 25px !important;
  }

  .mb30 {
    margin-bottom: 30px !important;
  }

  .mb35 {
    margin-bottom: 35px !important;
  }

  .mb40 {
    margin-bottom: 40px !important;
  }

  .mb45 {
    margin-bottom: 45px !important;
  }

  .mb50 {
    margin-bottom: 50px !important;
  }

  .mb55 {
    margin-bottom: 55px !important;
  }

  .mb60 {
    margin-bottom: 60px !important;
  }

  .mb65 {
    margin-bottom: 65px !important;
  }

  .mb70 {
    margin-bottom: 70px !important;
  }

  .mb75 {
    margin-bottom: 75px !important;
  }

  .mb80 {
    margin-bottom: 80px !important;
  }

  .mb85 {
    margin-bottom: 85px !important;
  }

  .mb90 {
    margin-bottom: 90px !important;
  }

  .mb95 {
    margin-bottom: 95px !important;
  }

  .mb100 {
    margin-bottom: 100px !important;
  }

  .mb105 {
    margin-bottom: 105px !important;
  }

  pre {
    padding: 30px;
    border-radius: 26px;
  }
}
/*# sourceMappingURL=info.css.map */

/*追加*/

.wrapper-layout {
  display: flex;
  justify-content: space-between;
}
.wrapper-layout .side-menu {
  width: 20%;
}
.side-menu ul li {
  border: 1px solid #050000;
  border-radius: 14px;
  margin-bottom: 0.5em;
  overflow: hidden;
}

.side-menu ul li a {
  display: block;
  padding: 15px 20px;
}

.side-menu ul li a:hover {
  color: #FFF;
  background: #050000;
  opacity:1.0;
}

.side-menu ul li.active a{
  background: #050000;
  color: #FFF;
}

.side-menu ul li span {
  display: block;
  padding: 15px 20px;
}
.wrapper-layout .main-contents {
  width: 76%;
}

@media screen and (max-width: 768px) {
  .wrapper-layout {
    display: block;
}
  .wrapper-layout .side-menu,
  .wrapper-layout .main-contents {
    width: 100%;
    margin-bottom: 1em;
  }
  
}