

.ul_stuff {
	list-style: none;
	padding-left: 0;
	display:flex;
	flex-wrap: wrap;
	font-size:14px;
	text-align:center;
	justify-content: center;
}

.li_stuff {
justify-content: center;
align-items: center;
	float:left;
	margin:6px;
	width:100px;
display: inline-block;
}




/*modal*/
.a-modal-org {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 190002;
}
.a-modal-org__inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
  height: 100%;
}
@media print, screen and (min-width: 737px) {
  .a-modal-org__inner {
    width: 80vw;
    max-width: 900px;
  }
}
@media screen and (max-width: 736px) {
  .a-modal-org__inner {
    width: 85vw;
  }
}
.a-modal-org__inner2 {
  position: relative;
  width: 100%;
}
.a-modal-org__inner3 {
  background-color: #ffffff;
}
@media print, screen and (min-width: 769px) {
  .a-modal-org__inner3 {
    max-height: 80vh;
    border-radius: 12px;
    border: 1.5rem solid #fff;
  }
}
@media print, screen and (max-width: 768px) {
  .a-modal-org__inner3 {
    max-height: 70vh;
    border-radius: 6px;
    border: 1.125rem solid #fff;
  }
}
.a-modal-org__body {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.a-modal-org__scroll.is-scroll {
  overflow-y: scroll;
}
@media print, screen and (min-width: 769px) {
  .a-modal-org__scroll.is-scroll {
    padding-right: 0.5rem;
  }
}
.a-modal-org__close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.a-modal-org__btn {
  box-sizing: border-box;
  background-color: #333333;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.a-modal-org__btn-inner {
  display: inline-block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  position: relative;
}
.a-modal-org__btn-inner::before, .a-modal-org__btn-inner::after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.a-modal-org__btn-inner::before {
  border-top: 2px solid #ffffff;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
}
.a-modal-org__btn-inner::after {
  border-left: 2px solid #ffffff;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  left: 9px;
  transform: rotate(45deg);
}

/*=========
utility - display-off
=========*/

.a-display-off {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
}

/*=========
layout - a-modal-org-overlay
=========*/

.a-modal-org-overlay {
  display: none;
  z-index: 190001;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
}

/*=========
base
=========*/

html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: .025em;
  line-height: 1.8;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.s_section {
  background: #fff;
  padding: 2rem 0;
}
.gutter>*:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 736px) {
  .gutter>*:not(:last-child) {
    margin-bottom: 1.75rem;
  }
}
h2 {
  color: #333;
  font-size: 22px;
  font-weight: bold;
  text-align: left;
  border-left: 5px solid #333333;
  padding-left: 8px;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 736px) {
  h2 {
    font-size: 16px;
  }
}
ul.list-disc {
  margin-bottom: 0;
  padding-left: 0;
}
.list-disc__item {

  list-style: none;
}
a._a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 2.0em 1.0em;
  border: 1px solid #222222;
  background: linear-gradient(to right, #ffffff 50%, #222222 50%);
  background-size: 200% auto;
  box-sizing: border-box;
  color: #222222;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  transition: .3s;
  position: relative;
}
a._a:after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
}
a._a:hover {
  color: #ffffff;
  background-position: -100% 0;
}