@charset "UTF-8";
section {
    padding-top: 6rem;
}

.under {
    color: #f00;
    text-decoration: underline;
}

.donation__more {
    text-align: center;
    margin: 8rem auto;
    padding: 0 0.2rem;
}

.preface {
    margin-bottom: 6rem;
}

.preface a {
    color: #d00;
    font-weight: 700;
    text-decoration: underline;
}

.preface a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.gradation-box {
    margin-bottom: 1rem;
    padding-left: 1.6em;
    position: relative;
}
.gradation-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.2em;
    height: 1.2em;
    background: -webkit-gradient(linear, left top, right top, from(#d00), to(#cfbf72));
    background: linear-gradient(90deg, #d00, #cfbf72);
}

.button img {
    position: absolute;
    top: 50%;
    left: 2.7rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .button img {
        width: 3.5rem;
  }
}
.buttonB {
    padding: 2rem 10rem;
    font-weight: bold;
    font-size: 1.6rem;
    text-align: center;
    display: inline-block;
    background-color: white;
    position: relative;
    border-radius: 40px;
    background: -webkit-gradient(linear, left top, right top, from(#d00), to(#cfbf72));
    background: linear-gradient(90deg, #d00, #cfbf72);
}
.buttonB:hover {
    opacity: 0.8;
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
  .buttonB {
        font-size: 2.8rem;
        display: block;
  }
}
/*アンカー調整*/
.anchor {
    margin-top: -120px !important;
    padding-top: 120px;
}

@media screen and (max-width: 767px) {
  .anchor {
        margin-top: -60px !important;
        padding-top: 60px;
  }
}
/* ==================================
	共通コンテンツdl
================================== */
.info__detail:not(:first-of-type) {
    margin-top: 6rem;
}
.info__detail--wrap {
    overflow: hidden;
}
.info__detail > dt {
    border-bottom: 2px solid #d00;
    -o-border-image: linear-gradient(to right, #d00 0%, #cfbf72 100%);
       border-image: -webkit-gradient(linear, left top, right top, from(#d00), to(#cfbf72));
       border-image: linear-gradient(to right, #d00 0%, #cfbf72 100%);
    border-image-slice: 1;
    font-size: 18px;
    padding: 1em;
}
.info__detail > dd {
    margin-top: 40px;
    overflow: hidden;
}
.info__detail figure {
    float: right;
    width: 100%;
    max-width: 400px;
    margin: 0 0 20px 40px;
}
.info__detail figure.rev {
    float: left;
    margin: 0 40px 20px 0;
}
.info__block {
    margin-top: 40px;
}
.info__attention {
    margin-top: 20px;
}
.info__table {
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    margin-top: 40px;
}
.info__table th {
    background: #f5f5f5;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: center;
    padding: 1em;
}
.info__table td {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 1em;
}
.info__enclosure {
    background: #f8f8f8;
    padding: 40px 60px;
}
.info__enclosure dt {
    text-align: center;
    font-weight: 700;
}
.info__enclosure dd {
    margin-top: 2em;
}

@media screen and (max-width: 767px) {
  .info__detail dt {
        font-size: 16px;
  }
  .info__detail dd {
        margin-top: 1em;
  }
  .info__detail figure {
        float: none;
        margin: 0 auto 0.5em;
  }
  .info__enclosure {
        padding: 20px 40px;
  }
}
/* ==================================
	共通アコーディオン
================================== */
/*アコーディオン全体*/
.menu {
    width: 100%;
    margin-top: 6rem;
}

.menu input {
    display: none;
}

/*バー部分*/
.menu label {
    cursor: pointer;
    display: block;
    color: #fff;
    position: relative;
    background-color: #d00;
    text-align: center;
    font-weight: 700;
    padding: 1em;
    margin-bottom: 0;
}

/*開いたときに表示される部分*/
.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu li {
    height: 0;
    overflow-y: hidden;
    -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
    transition: padding-bottom 0.5s, padding-top 0.5s;
  /*閉じるときのアニメーション*/
}

#menu_bar01:checked ~ #links01 li,
#menu_bar02:checked ~ #links02 li {
    height: auto;
  /*開いたときに表示されるliの高さ*/
    opacity: 1;
    padding: 50px 50px 0 50px;
    border-right: 2px solid #d00;
    border-left: 2px solid #d00;
}

/*開いたときの下の余白*/
#menu_bar01:checked ~ #links01 li:last-child,
#menu_bar02:checked ~ #links02 li:last-child {
    margin-bottom: 20px;
    padding-bottom: 50px;
    border-bottom: 2px solid #d00;
}

/*閉じた状態の矢印描画*/
.menu label:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: #fff 2px solid;
    border-right: #fff 2px solid;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    position: absolute;
    right: 1.5em;
    top: 0;
    bottom: 15%;
    margin: auto;
}

/*開いた状態の矢印描画*/
.menu input[type="checkbox"]:checked + label:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: #fff 2px solid;
    border-right: #fff 2px solid;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    position: absolute;
    right: 1.5em;
    top: 7%;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 767px) {
  #menu_bar01:checked ~ #links01 li,
  #menu_bar02:checked ~ #links02 li {
        padding: 1em;
  }
}
.shops__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}