#guide_list {
  margin: 1rem 1.5rem 1rem;
  list-style: none;
  border-left: 2px solid #C80000;
  border-right: 2px solid #C80000;
  border-top: 2px solid #C80000;
  background: #FFF;
}

#guide_list input {
  display: none;
}

#guide_list label {
  cursor: pointer;
}

#guide_list .title {
  border-bottom: 2px solid #C80000;
  font-size: 1.25rem;
  font-weight: bold;
  padding: .3em .5em .25em;
  position: relative;
  background: #FFF;
}

#guide_list .title:after, #guide_list .title:before {
  content: "";
  position: absolute;
  top: 60%;
  width: .8em;
  border-top: 3px solid #C80000;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
}

#guide_list .title:before {
  right: 1.3em;
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#guide_list .title:after {
  right: .5em;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#guide_list .links a {
  display: block;
  height: 0;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
  position: relative;
  overflow: hidden;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0 1em;
  padding: 0 .3em 0;
}

#guide_list .links a:focus, #guide_list .links a:hover {
  color: #C80000;
}

#guide_list input[type=checkbox]:checked~label .title:after, #guide_list input[type=checkbox]:checked~label .title:before {
  top: calc(50% - 1.5px);
}

#guide_list input[type=checkbox]:checked~label .title:before {
  right: 1.1em;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

#guide_list input[type=checkbox]:checked~label .title:after {
  right: .7em;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

#guide_list input[type=checkbox]:checked~.links {
  border-bottom: 1px solid #C80000;
}

#guide_list input[type=checkbox]:checked~.links a {
  min-height: 100%;
  height: 2.3em;
  padding-top: .5em;
  border-bottom: 1px solid #C80000;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#guide_list input[type=checkbox]:checked~.links a:last-child {
  border-bottom: none;
}

#guide_list li:last-child input[type=checkbox]:checked~.links {
  border-bottom: 2px solid #C80000;
}

#other_list {
  margin: 0 1.5rem 2rem;
}

#other_list a {
  display: block;
  border-top: 2px solid #C80000;
  border-left: 2px solid #C80000;
  border-right: 2px solid #C80000;
  font-size: 1.25rem;
  font-weight: bold;
  padding: .3em .5em .25em;
  position: relative;
  background: #FFF;
}

#other_list a:nth-child(n+2) {
  border-bottom: 2px solid #C80000;
}

#other_list a:last-child {
  margin-top: 1rem;
}

#other_list a:after, #other_list a:before {
  content: "";
  position: absolute;
  top: 60%;
  width: .8em;
  border-top: 3px solid #C80000;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
}

#other_list a:before {
  right: 1.3em;
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#other_list a:after {
  right: .5em;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

dl.guide_list, h2 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

h2 {
  padding-top: 3rem;
  text-align: center;
}

h2 span {
  display: inline-block;
  font-size: 1.55rem;
  font-weight: bold;
  position: relative;
  padding-bottom: .3em;

}

h2 span:after {
    content: "";
    font-size: 20px;
    letter-spacing: -.25em;
    border: none;
    width: 78px;
    margin: 1em auto 0;
    display: block;
    height: 2px;
    background: #CA9B39;
}
dl.guide_list>dt {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
  padding-top: 1.5em;
  margin-bottom: .3em;
}

dl.guide_list>dt:before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background-color: #C80000;
  border-radius: 50%;
  margin-right: .2em;
}

dl.guide_list>dt>small {
  font-size: .7em;
  color: white;
  background-color: #C80000;
  padding: .3em .8em .2em;
  margin-left: .5em;
  border-radius: 1em;
}

dl.guide_list>dd {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

dl.guide_list>dd a {
  text-decoration: underline;
}

dl.guide_list>dd>strong {
  color: #C80000;
  font-size: inherit;
  line-height: inherit;
}

dl.guide_list>dd>strong br {
  display: none;
}

dl.guide_list>dd>div {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 2em;
}

dl.guide_list>dd>div h3 {
  font-size: 1rem;
  font-weight: bold;
  color: #C80000;
  margin-bottom: .5em;
}

dl.guide_list>dd>div p {
  font-size: 0.85rem;
  line-height: 1.4;
}

dl.guide_list>dd>div dd, dl.guide_list>dd>div dt, dl.guide_list>dd>div li {
  font-size: 0.85rem;
  line-height: 1.4;
}

dl.guide_list>dd>div ol {
  text-align: left;
  list-style: none;
  counter-reset: num;
  margin-top: .5em;
  margin-bottom: .5em;
}

dl.guide_list>dd>div ol li {
  display: inline-block;
  margin: 0 .5em 0 0;
}

dl.guide_list>dd>div ol li:before {
  counter-increment: num;
  content: "(" counter(num) ")";
}

dl.guide_list>dd>div dl {
  margin-top: 1em
}

dl.guide_list>dd>div dt {
  font-weight: bold;
  margin-top: .5em;
  margin-bottom: .1em;
}

dl.guide_list>dd>div ul {
  margin-top: 1em;
  list-style: none;
}

dl.guide_list>dd>div ul li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

dl.guide_list>dd>div ul li:before {
  content: "\203b";
  display: inline-block;
  width: 1.2em;
  text-indent: 0;
}

dl.guide_list>dd>ul {
  margin-top: 1em;
  list-style: none;
  line-height: inherit;
}

dl.guide_list>dd>ul li {
  line-height: inherit;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

dl.guide_list>dd>ul li:before {
  content: "\203b";
  display: inline-block;
  width: 1.2em;
  text-indent: 0;
}

dl.guide_list>dd>ol {
  font-size: inherit;
  line-height: inherit;
  padding-left: 1.3em;
}

dl.guide_list>dd>ol li {
  font-size: inherit;
  line-height: inherit;
}

dl.guide_list>dd>ol li small {
  display: block;
  line-height: inherit;
  font-weight: bold;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

dl.guide_list>dd>ol li small:before {
  content: "\203b";
  display: inline-block;
  width: 1.2em;
  text-indent: 0;
}

dl.guide_list>dd>small {
  display: block;
  font-size: 0.85rem;
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: inherit;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

dl.guide_list>dd>small:before {
  content: "\203b";
  display: inline-block;
  width: 1.2em;
  text-indent: 0;
}

dl.guide_list>dd>dl {
  font-size: inherit;
  line-height: inherit;
}

dl.guide_list>dd>dl dd, dl.guide_list>dd>dl dt {
  font-size: inherit;
  line-height: inherit;
}

dl.guide_list>dd>dl dt {
  color: #C80000;
  font-weight: bold;
}

dl.guide_list>dd>dl dd {
  margin-bottom: .5em;
}

dl.guide_list>dd>dl dd ul {
  margin-top: .5em;
  list-style: none;
}

dl.guide_list>dd>dl dd ul li {
  font-size: 0.85rem;
  line-height: 1.4;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

dl.guide_list>dd>dl dd ul li:before {
  content: "\203b";
  display: inline-block;
  width: 1.2em;
  text-indent: 0;
}

dl.guide_list>dd>table {
  margin-top: 1em;
  border-collapse: collapse;
  width: 100%;
}

dl.guide_list>dd>table td, dl.guide_list>dd>table th {
  padding: .4em .5em .3em;
  border: 1px solid black;
  text-align: left;
  line-height: 1.4;
}

dl.guide_list>dd>table caption {
  text-align: left;
  padding-bottom: .5em;
  color: #C80000;
  font-weight: bold;
}

dl.guide_list>dd>table th {
  min-width: 5.5em;
}

#anc16+dd>ol {
  padding-left: 0;
}

#anc16+dd p {
  line-height: inherit;
  margin-top: 1em;
}

#anc16+dd dd, #anc16+dd dt, #anc16+dd li {
  font-size: 0.85rem;
  line-height: 1.4;
}

#anc16+dd ol {
  text-align: left;
  list-style: none;
  counter-reset: num;
  margin-top: .5em;
}

#anc16+dd ol li {
  display: inline-block;
  margin: 0 .5em 0 0;
}

#anc16+dd ol li:before {
  counter-increment: num;
  content: "(" counter(num) ")";
}

#anc16+dd dl {
  margin-top: 1em;
}

#anc16+dd dt {
  font-weight: bold;
  margin-top: .5em;
  margin-bottom: .1em;
}

#anc16+dd ul {
  margin-top: 1em;
  list-style: none;
}

#anc16+dd ul li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

#anc16+dd ul li:before {
  content: "\203b";
  display: inline-block;
  width: 1.2em;
  text-indent: 0;
}

#anc25+dd>ul {
  margin-top: 0;
}

#anc25+dd>ul li:before {
  content: "\30fb";
}

@media screen and (min-width:700px) {
  /* .content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  } */
  /* #guide_header {
    padding: 2.5rem 1.5rem 1rem;
  } */
  #guide_header {
    padding: 2.5rem 1.5rem 1rem;
    background-image: url(https://op.st-spica.jp/img2021/other_sunlight.jpg);
    background-repeat:  repeat-x;
    background-size: auto 313px;
  }

  #guide_subttl span.title{
    font-size: 2.3em;
  }
  #delivery, #guide_list, #info, #other_list, #payment, dl.guide_list, h2 {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  #guide_list .title {
    font-size: 1.45rem;
    padding: .5em 1em .45em;
  }
  #guide_list .links a {
    font-size: 1rem;
  }
  #other_list a {
    font-size: 1.45rem;
    padding: .5em 1em .45em;
  }
  h2 {
    padding-top: 5rem;
  }
  h2 span {
    font-size: 1.75rem;
  }
  dl.guide_list>dt {
    font-size: 1.45rem;
  }
  dl.guide_list>dd {
    font-size: 1.1rem;
  }
  dl.guide_list>dd>strong br {
    display: block;
  }
  dl.guide_list>dd>div {
    padding: 2rem;
    margin-bottom: 1rem;
  }
  dl.guide_list>dd>div h3 {
    font-size: 1.1rem;
  }
  dl.guide_list>dd>div p {
    font-size: 1rem;
  }
  dl.guide_list>dd>div dd, dl.guide_list>dd>div dt, dl.guide_list>dd>div li {
    font-size: 1rem;
  }
  dl.guide_list>dd>small {
    font-size: 1rem;
  }
  dl.guide_list>dd>dl dd ul li {
    font-size: 1rem;
  }
  #anc16+dd dd, #anc16+dd dt, #anc16+dd li {
    font-size: 1rem;
  }
  #info dl.guide_list {
    padding-top: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  #info dl.guide_list dd, #info dl.guide_list dt {
    padding-top: 1rem;
    margin-bottom: 1rem;
  }
  #info dl.guide_list dt {
    width: 25%;
    padding-left: 1em;
    text-indent: -1em;
  }
  #info dl.guide_list dt:before {
    text-indent: 0;
  }
  #info dl.guide_list dd {
    width: 75%;
    padding-left: 1em;
  }
}
