@charset "UTF-8";
/*********************************************************
base
*********************************************************/
* {
  box-sizing: border-box;
}

body {
  color: #333;
  counter-reset: number 0;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}
a {
  color: #333;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
}

li {
  list-style: none;
}

span {
  font-weight: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.tac {
  text-align: center;
}

.dib {
  display: inline-block;
}

.hidden {
  display: none !important;
}

/*********************************************************
base
*********************************************************/
* {
  box-sizing: border-box;
}

body {
  color: #333;
  counter-reset: number 0;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}
a {
  color: #333;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
}

li {
  list-style: none;
}

span {
  font-weight: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.tac {
  text-align: center;
}

.dib {
  display: inline-block;
}

.hidden {
  display: none !important;
}

/*********************************************************
header
*********************************************************/
.header {
  padding: 50px 0;
}

@media (max-width: 768px) {
  .header {
    background: #fff;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 999;
  }
}
.header__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}

@media (max-width: 1100px) {
  .header__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
@media (min-width: 769px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 769px) {
  .header__logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
  }
}
/*-----------------------
.gnav
-----------------------*/
.gnav {
  width: 70%;
}

@media (max-width: 768px) {
  .gnav {
    background: #000;
    display: none;
    padding: 100px 2% 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  }
}
@media (min-width: 769px) {
  .gnav__list {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .gnav__item:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  .gnav__item:not(:last-child) a {
    padding: 30px 0 10px;
  }
  .gnav__item.-contact a {
    background: #CF372C;
    border-radius: 30px;
    margin-top: 30px;
    padding: 15px;
    text-align: center;
  }
  .gnav__item.-contact a:hover {
    background: #b22e24;
  }
}
@media (min-width: 769px) {
  .gnav__item a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 768px) {
  .gnav__item a {
    color: #fff;
    display: block;
    position: relative;
  }
  .gnav__item a:hover .gnav__sp-icon::before {
    right: -3px;
  }
  .gnav__item a:hover .gnav__sp-icon::after {
    right: -5px;
  }
}
.gnav__sp-icon {
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
}

@media (min-width: 769px) {
  .gnav__sp-icon {
    display: none;
  }
}
.gnav__sp-icon::before, .gnav__sp-icon::after {
  transition: 0.3s;
}

.gnav__sp-icon::before {
  background: #fff;
  content: "";
  position: absolute;
  right: 5px;
  bottom: 10px;
  width: 20px;
  height: 2px;
}

.gnav__sp-icon::after {
  background: #fff;
  content: "";
  position: absolute;
  right: 3px;
  bottom: 14px;
  transform: rotate(45deg);
  width: 12px;
  height: 2.1px;
}

/*-----------------------
menu-btn
-----------------------*/
.menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

@media (min-width: 769px) {
  .menu-btn {
    display: none;
  }
}
.menu-btn__inner {
  cursor: pointer;
  height: 30px;
  position: relative;
  width: 30px;
}

.menu-btn__bar {
  background: #333;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 0;
  transition: 0.5s;
  width: 100%;
}

.menu-btn__bar::before, .menu-btn__bar::after {
  background: #333;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  transition: 0.5s;
  width: 100%;
}

.menu-btn__bar::before {
  margin-top: -11px;
}

.menu-btn__bar::after {
  margin-top: 10px;
}

.close .menu-btn__bar {
  background: transparent;
}

.close .menu-btn__bar::before, .close .menu-btn__bar::after {
  background: #fff;
  margin-top: 0;
}

.close .menu-btn__bar::before {
  transform: rotate(45deg);
}

.close .menu-btn__bar::after {
  transform: rotate(-45deg);
}

/*********************************************************
footer
*********************************************************/
.footer {
  background: #000;
  color: #fff;
  margin-top: 10%;
  padding: 20px 0;
}

.footer.-mt0 {
  margin-top: 0;
}

.footer a {
  color: #fff;
}

.footer__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}

@media (max-width: 1100px) {
  .footer__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
.footer__box {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.footer__address {
  line-height: 1.5;
}

.footer__pagetop {
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .footer__pagetop {
    display: none;
  }
}
.footer__pagetop a {
  display: block;
  font-size: 24px;
  padding: 50px 5px 0 0;
  position: relative;
}

.footer__pagetop a::before, .footer__pagetop a::after {
  transition: 0.3s;
}

.footer__pagetop a::before {
  background: #fff;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 110px;
}

.footer__pagetop a::after {
  background: #fff;
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  transform: rotate(-60deg);
  width: 40px;
  height: 1.4px;
}

.footer__pagetop a:hover::before {
  height: 180px;
}

.footer__pagetop a:hover::after {
  top: -66px;
}

/*-----------------------
fnav
-----------------------*/
.fnav {
  margin-top: 50px;
}

.fnav__list {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .fnav__list {
    flex-wrap: wrap;
  }
}
.fnav__item {
  width: 17%;
}

@media (max-width: 768px) {
  .fnav__item {
    width: 48%;
  }
  .fnav__item:nth-child(n+3) {
    margin-top: 10%;
  }
}
.fnav__item a:hover {
  opacity: 0.8;
}

.fnav__ttl {
  border-bottom: 1px solid #fff;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 8px;
}

.fnav__txt {
  margin-top: 10px;
  padding: 0 10px;
}

.fnav__txt:nth-child(2) {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .fnav__txt:nth-child(2) {
    margin-top: 10px;
  }
}
/*-----------------------
fbottom
-----------------------*/
.fbottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .fbottom {
    display: block;
  }
}
.fbottom__nav ul {
  display: flex;
}

@media (max-width: 768px) {
  .fbottom__nav ul {
    display: block;
  }
}
.fbottom__nav li {
  margin-right: 50px;
}

@media (max-width: 768px) {
  .fbottom__nav li {
    margin-right: 0;
  }
  .fbottom__nav li:not(:first-child) {
    margin-top: 1em;
  }
}
.fbottom__nav li a {
  font-weight: bold;
}

.fbottom__nav li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fbottom__copy {
    margin-top: 30px;
    text-align: center;
  }
}
/*-----------------------
sp-pagetop
-----------------------*/
.sp-pagetop {
  display: none;
}

@media (max-width: 768px) {
  .sp-pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 2;
  }
  .sp-pagetop a {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: block;
    padding: 0;
    position: relative;
    width: 50px;
    height: 50px;
  }
  .sp-pagetop a::before, .sp-pagetop a::after {
    transition: 0.3s;
  }
  .sp-pagetop a::before {
    background: #fff;
    content: "";
    position: absolute;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    width: 1px;
    height: 30px;
  }
  .sp-pagetop a::after {
    background: #fff;
    content: "";
    margin: -5px -5px 0 0;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: rotate(-60deg);
    width: 20px;
    height: 1.4px;
  }
  .sp-pagetop a:hover {
    opacity: 0.8;
  }
  .sp-pagetop a:hover::before {
    height: 30px;
  }
  .sp-pagetop a:hover::after {
    top: 50%;
  }
}
/*-----------------------
footer-finance
-----------------------*/
.footer-finance {
  color: #aaa;
  font-size: 12px;
  margin-top: 30px;
}

.footer-finance__ad {
  border: 2px solid #aaa;
  border-radius: 7px;
  display: inline-block;
  line-height: 1;
  margin: 7px 10px 0 0;
  padding: 3px 10px;
}

.footer-finance__link {
  color: #aaa !important;
  display: inline-block;
  margin-top: 7px;
  text-decoration: underline;
}

.footer-finance__link:hover {
  text-decoration: none;
}

/*********************************************************
main
*********************************************************/
.main {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}

@media (max-width: 1100px) {
  .main {
    padding-right: 2%;
    padding-left: 2%;
  }
}
/*-----------------------
矢印
-----------------------*/
/* arrow01 */
.arrow01 {
  width: 250px;
}

.arrow01 a {
  display: block;
  letter-spacing: 0.07em;
  padding-right: 70px;
  position: relative;
  text-align: right;
}

.arrow01 a:hover {
  color: #333;
}

.arrow01 a:hover::before, .arrow01 a:hover::after {
  background: #333;
}

.arrow01 a::before {
  background: #fff;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 250px;
  height: 0.5px;
}

@media (max-width: 768px) {
  .arrow01 a::before {
    width: 180px;
  }
}
.arrow01 a::after {
  background: #fff;
  content: "";
  position: absolute;
  right: -4px;
  bottom: 11px;
  transform: rotate(35deg);
  width: 40px;
  height: 0.5px;
}

/* arrow02 */
.arrow02 {
  display: inline-block;
}

.arrow02 a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.07em;
  padding: 8px 50px 0 15px;
  position: relative;
  transition: 0.3s;
}

.arrow02 a:hover {
  color: #FF5252;
}

.arrow02 a:hover::before {
  width: 35px;
}

.arrow02 a:hover::before, .arrow02 a:hover::after {
  background: #FF5252;
}

.arrow02 a:hover + .arrow02__bottom {
  color: #FF5252;
}

.arrow02 a::before {
  background: #333;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 0.3s;
  width: 100%;
  height: 2px;
}

.arrow02 a::after {
  background: #333;
  content: "";
  position: absolute;
  right: -2px;
  bottom: 12px;
  transform: rotate(35deg);
  transition: 0.3s;
  width: 40px;
  height: 2px;
}

.arrow02__bottom {
  display: block;
  font-size: 14px;
  margin-top: 3px;
  text-align: center;
  transition: 0.3s;
}

/*-----------------------
content
-----------------------*/
.content.-lower {
  margin-top: 5%;
}

@media (max-width: 768px) {
  .content.-lower {
    margin-top: 10%;
  }
}
@media (max-width: 480px) {
  .content.-lower {
    margin-top: 15%;
  }
}
.content.-bg_gray {
  background: #f5f2f0;
  padding: 10% 0;
}

.content__header {
  display: flex;
}

.content__header.-top_news {
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 350px) {
  .content__header.-top_news {
    display: block;
  }
}
.content__ttl01 {
  width: 400px;
}

@media (max-width: 768px) {
  .content__ttl01 {
    white-space: nowrap;
    width: 55%;
  }
}
@media (min-width: 769px) {
  .content__ttl01.-pc_right {
    margin-left: auto;
  }
}
.content__ttl01 h2 {
  border-bottom: 2px solid #333;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.07em;
  padding-bottom: 5px;
}

.content__ttl02 {
  margin-bottom: 5%;
}

@media (max-width: 480px) {
  .content__ttl02 {
    margin-bottom: 50px;
  }
}
.content__ttl02 h2 {
  border-bottom: 2px solid #333;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.07em;
  padding-bottom: 10px;
  position: relative;
}

.content__ttl02 h2 span {
  color: #404040;
  display: inline-block;
  font-size: 65%;
  font-weight: normal;
  margin-left: 1em;
}

@media (max-width: 480px) {
  .content__ttl02 h2 span {
    margin-left: 0;
    position: absolute;
    bottom: -25px;
    left: 0;
  }
}
.content__ttl05 {
  width: 400px;
}

@media (max-width: 768px) {
  .content__ttl05 {
    width: 55%;
  }
}
@media (min-width: 769px) {
  .content__ttl05.-pc_right {
    margin-left: auto;
  }
}
.content__ttl05 .content__ttl05-txt {
  border-bottom: 1px solid #333;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.07em;
  padding-bottom: 5px;
}

.content__ttl05 .content__ttl05-txt span {
  color: #404040;
  display: inline-block;
  font-size: 65%;
  font-weight: normal;
  margin-left: 1em;
}

.content-ttl03 {
  border-left: 10px solid #d00;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.07em;
  padding: 5px 0 5px 15px;
}

.content-ttl04 {
  border-bottom: 3px solid #333;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.07em;
  padding: 3px 0 10px 3px;
}

/*-----------------------
breadcrumb-list
-----------------------*/
.breadcrumb-list * {
  color: #999;
}

.breadcrumb-list a {
  font-weight: bold;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-list__item {
  display: inline;
  line-height: 1.5;
  position: relative;
}

.breadcrumb-list__item:nth-child(n+2)::before {
  content: "-";
  display: inline-block;
  padding: 0 3px;
  vertical-align: middle;
}

/*-----------------------
間隔
-----------------------*/
.-mt3p {
  margin-top: 3%;
}

.-mt5p {
  margin-top: 5%;
}

.-mt10p {
  margin-top: 10%;
}

.-pt5p {
  padding-top: 5%;
}

.-pb5p {
  padding-bottom: 5%;
}

.-pb10p {
  padding-bottom: 10%;
}

.-ptb5p {
  padding-top: 5%;
  padding-bottom: 5%;
}

/*********************************************************
index.html
*********************************************************/
/*-----------------------
hero
-----------------------*/
.hero {
  background-image: url(image.php?id=005);
  background-size: cover;
  overflow: hidden;
  padding: 20% 0 3%;
  position: relative;
  z-index: 1;
}

@media (max-width: 500px) {
  .hero {
    padding: 50px 0;
  }
}
.hero__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
  position: relative;
}

@media (max-width: 1100px) {
  .hero__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
.hero__txt01,
.hero__txt02,
.hero__txt03,
.hero__txt04 {
  font-weight: bold;
}

.hero__txt01,
.hero__txt04 {
  color: #fff;
  font-size: 18px;
}

.hero__txt04 {
  margin-top: 6px;
}

@media (min-width: 501px) and (max-width: 768px) {
  .hero__txt04 {
    display: inline-block;
  }
}
.hero__txt02,
.hero__txt03 {
  background: #fff;
  color: #000;
  display: inline-block;
  font-size: 30px;
  line-height: 1.3;
  padding: 2px 1px;
}

@media (max-width: 500px) {
  .hero__txt02,
  .hero__txt03 {
    font-size: 24px;
  }
}
.hero__txt02 {
  margin-top: 3px;
}

@media (max-width: 768px) {
  .hero__txt02 {
    margin-top: 10px;
  }
}
.hero__br {
  display: none;
}

@media (max-width: 768px) {
  .hero__br {
    display: block;
    margin-top: 10px;
  }
}
.hero__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1100px) {
  .hero__arrow {
    right: 10px;
  }
}
@media (max-width: 500px) {
  .hero__arrow {
    bottom: -30px;
  }
}
.hero__arrow a {
  color: #fff;
}

.hero.on .hero__circle01,
.hero.on .hero__circle02,
.hero.on .hero__circle03 {
  animation-delay: 0.5s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  padding-bottom: 5%;
  position: absolute;
  width: 5%;
  z-index: -1;
}

.hero.on .hero__circle01 {
  animation-name: zoom01;
  top: 5%;
  right: 18%;
}

.hero.on .hero__circle02 {
  animation-name: zoom02;
  top: 3%;
  right: 20%;
}

.hero.on .hero__circle03 {
  animation-name: zoom03;
  top: 10%;
  right: 14%;
}

@keyframes zoom01 {
  0% {
    top: 5%;
    right: 18%;
  }
  50% {
    top: 8%;
  }
  100% {
    top: -5%;
    right: 80%;
    width: 20%;
    padding-bottom: 20%;
  }
}
@keyframes zoom02 {
  0% {
    top: 3%;
    right: 20%;
  }
  50% {
    top: 8%;
  }
  100% {
    top: -20%;
    right: 30%;
    width: 20%;
    padding-bottom: 20%;
  }
}
@keyframes zoom03 {
  0% {
    top: 10%;
    right: 14%;
  }
  100% {
    top: 50%;
    right: -5%;
    width: 20%;
    padding-bottom: 20%;
  }
}
/*-----------------------
content
-----------------------*/
.content.-toppage {
  margin-top: 10%;
}

@media (max-width: 768px) {
  .content.-toppage {
    margin-top: 15%;
  }
}
@media (max-width: 480px) {
  .content.-toppage {
    margin-top: 20%;
  }
}
/*-----------------------
news-list
-----------------------*/
.news-list {
  margin-top: 50px;
}

.news-list__item:not(:first-child) {
  margin-top: 1em;
}

@media (max-width: 768px) {
  .news-list__item:not(:first-child) {
    margin-top: 2em;
  }
}
.news-list__item a {
  text-decoration: underline;
}

.news-list__item a:hover {
  text-decoration: none;
}

.news-list__date,
.news-list__cat,
.news-list__ttl {
  display: inline-block;
  font-size: 14px;
}

.news-list__cat {
  margin-left: 30px;
  width: 130px;
}

@media (max-width: 768px) {
  .news-list__ttl {
    display: block;
    line-height: 2;
    margin-top: 10px;
  }
}
@media (max-width: 350px) {
  .news-view-all {
    margin-top: 10px;
    text-align: right;
  }
}
.news-view-all .arrow02 {
  height: 100%;
}

.news-view-all .arrow02 a {
  height: 100%;
}

/*-----------------------
pickup-slide
-----------------------*/
.pickup-slide {
  margin-top: 50px;
  position: relative;
}

@media (max-width: 1200px) {
  .pickup-slide {
    padding: 0 30px;
  }
}
@media (max-width: 480px) {
  .pickup-slide .swiper-container {
    padding-bottom: 30px;
  }
}
.pickup-slide .swiper-container a:hover {
  opacity: 0.8;
}

.pickup-slide .swiper-container p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 20px;
}

@media (max-width: 480px) {
  .pickup-slide .swiper-container p {
    display: none;
  }
}
@media (min-width: 481px) {
  .pickup-slide .swiper-button-prev,
  .pickup-slide .swiper-button-next {
    top: 40%;
  }
}
@media (max-width: 480px) {
  .pickup-slide .swiper-button-prev,
  .pickup-slide .swiper-button-next {
    display: none;
  }
}
.pickup-slide .swiper-button-prev {
  left: -30px;
}

@media (max-width: 1200px) {
  .pickup-slide .swiper-button-prev {
    left: 0;
  }
}
.pickup-slide .swiper-button-next {
  right: -30px;
}

@media (max-width: 1200px) {
  .pickup-slide .swiper-button-next {
    right: 0;
  }
}
@media (min-width: 481px) {
  .pickup-slide .swiper-pagination {
    display: none;
  }
}
.pickup-slide__arrow {
  margin-top: 30px;
  text-align: right;
}

@media (max-width: 1200px) {
  .pickup-slide .swiper-container p.swiper-slide__fz-small {
    font-size: 18px;
    font-size: 1.7vw;
  }
}
@media (max-width: 980px) {
  .pickup-slide .swiper-container p.swiper-slide__fz-small {
    font-size: 16px;
    font-size: 1.7vw;
  }
}
@media (max-width: 768px) {
  .pickup-slide .swiper-container p.swiper-slide__fz-small {
    font-size: 14px;
    font-size: 1.7vw;
  }
}
@media (max-width: 640px) {
  .pickup-slide .swiper-container p.swiper-slide__fz-small {
    font-size: 16px;
    font-size: 2.6vw;
  }
}
/*-----------------------
toppage-contents
-----------------------*/
.toppage-contents {
  margin-top: 50px;
}

.toppage-contents__box:not(:first-child) {
  margin-top: 30px;
}

.toppage-contents__box:last-child {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .toppage-contents__box:last-child {
    display: block;
  }
}
.toppage-contents__box a {
  border: 1px solid #333;
  display: block;
  position: relative;
}

.toppage-contents__box a:hover::before {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.toppage-contents__ttl {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.07em;
  padding: 15px;
}

.toppage-contents__marketplace,
.toppage-contents__recruit {
  width: 49%;
}

@media (max-width: 480px) {
  .toppage-contents__marketplace,
  .toppage-contents__recruit {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .toppage-contents__recruit {
    margin-top: 30px;
  }
}
/*********************************************************
news.html
*********************************************************/
/*-----------------------
news-list
-----------------------*/
.-lower .news-list__item:not(:first-child) {
  margin-top: 2em;
}

/*-----------------------
pagination
-----------------------*/
.pagination {
  margin-top: 30px;
  padding-top: 30px;
  text-align: right;
}

.pagination li {
  display: inline-block;
}

.pagination a {
  display: block;
  text-decoration: none;
}

#pagination {
  display: inline-block;
}

#pagination ul {
  text-align: left;
}

#pagination li {
  font-size: 12px;
}

#pagination a {
  padding: 5px 7px;
}

#pagination a:hover, #pagination a.-now {
  background: #575757;
  color: #fff;
}

#prevpage,
#nextpage {
  display: inline-block;
  font-size: 24px;
  white-space: nowrap;
}

#prevpage {
  margin-right: 1px;
  transform: rotate(-90deg);
}

#nextpage {
  margin-left: 1px;
  transform: rotate(90deg);
}

/*********************************************************
business.html
*********************************************************/
.business-inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}

@media (max-width: 1100px) {
  .business-inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
/*-----------------------
business-top
-----------------------*/
.business-top {
  position: relative;
}

.business-top__circle {
  position: absolute;
  top: -230px;
  right: 30%;
  transform: rotate(-45deg);
  width: 150px;
  z-index: -1;
}

@media (max-width: 1100px) {
  .business-top__circle {
    display: none;
  }
}
.business-top__circle span {
  background: #f5f2f0;
  border-radius: 50%;
  display: inline-block;
  margin-top: 20px;
  width: 150px;
  height: 150px;
}

.business-top__txt {
  line-height: 1.5;
}

.business-top__list {
  margin-top: 10%;
}

.business-top__item, .mp-service-list__item {
  color: #666;
}

.business-top__item:not(:first-child), .mp-service-list__item:not(:first-child) {
  margin-top: 20px;
}

.business-top__item::before, .mp-service-list__item::before {
  color: #d00;
  content: counter(number, decimal-leading-zero);
  counter-increment: number 1;
  display: inline-block;
  margin-right: 10px;
}

@media (min-width: 769px) {
  .business-top__sp-inline {
    display: block;
  }
}
.business-top__arrow {
  text-align: right;
}

@media (max-width: 480px) {
  .business-top__arrow {
    margin-top: 30px;
  }
}
/*-----------------------
bis-content
-----------------------*/
.bis-content.-promotion {
  padding: 10% 0;
}

/*-----------------------
bis-header
-----------------------*/
.bis-header {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .bis-header {
    flex-direction: column-reverse;
  }
}
.bis-header__content {
  margin-right: 50px;
}

@media (max-width: 480px) {
  .bis-header__content {
    margin-right: 0;
  }
}
.bis-header__txt01 {
  line-height: 2;
}

.bis-header__num {
  color: #d00;
}

@media (max-width: 480px) {
  .bis-header__num {
    margin-bottom: 30px;
  }
}
.bis-header__num p {
  font-size: 36px;
  font-weight: bold;
  margin: 50px 0;
}

@media (max-width: 480px) {
  .bis-header__num p {
    font-size: 24px;
    margin: 10px;
    text-align: center;
  }
}
.bis-header__prev,
.bis-header__next {
  color: #d00;
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  position: relative;
  text-align: center;
}

.bis-header__prev::after {
  margin-left: -11px;
  position: absolute;
  top: -15px;
  left: 50%;
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  transform: rotate(-45deg);
}

.bis-header__next::after {
  margin-left: -11px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  transform: rotate(135deg);
}

.bis-header__note {
  font-size: 14px;
  margin-left: 0.5em;
  text-indent: -0.5em;
}

/*-----------------------
modal-open
-----------------------*/
.modal-open {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

@media (min-width: 769px) {
  .modal-open {
    display: none;
  }
}
.modal-open__item {
  width: 48%;
}

.modal-open__item:nth-child(n+3) {
  margin-top: 2%;
}

.modal-open__btn {
  border: 1px solid #d00;
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
  text-align: center;
  width: 100%;
  height: 55px;
}

@media (max-width: 480px) {
  .modal-open__btn {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  .modal-open__btn {
    font-size: 10px;
  }
}
.modal-open__btn:hover {
  background: #d00;
  color: #fff;
}

.modal-open__btn span {
  font-size: 90%;
}

.modal-open__txt {
  color: #d00;
  display: block;
  font-size: 10px;
}

/*-----------------------
modal
-----------------------*/
@media (max-width: 768px) {
  .modal {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 3;
  }
  .modal.on {
    display: block;
  }
}
@media (max-width: 768px) {
  .modal__bg {
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  }
}
@media (max-width: 768px) {
  .modal__content {
    background: #fff;
    overflow: auto;
    padding: 10px;
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-height: calc(95% - 90px);
  }
}
@media (max-width: 768px) {
  .modal__close {
    background: #333;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
  }
  .modal__close::before, .modal__close::after {
    background: #fff;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 3px;
  }
  .modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
/*-----------------------
bis-products
-----------------------*/
.bis-products {
  margin-right: 50px;
}

@media (max-width: 768px) {
  .bis-products {
    margin-right: 0;
  }
}
.bis-products.-ovf, .bis-products.-ovf2 {
  overflow-y: auto;
}

@media (max-width: 768px) {
  .bis-products.-ovf, .bis-products.-ovf2 {
    overflow-y: visible;
  }
}
.bis-products.-ovf {
  height: 670px;
}

@media (max-width: 768px) {
  .bis-products.-ovf {
    height: auto;
  }
}
.bis-products.-ovf2 {
  height: 700px;
}

@media (max-width: 768px) {
  .bis-products.-ovf2 {
    height: auto;
  }
}
.ovf3 {
  height: 850px;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .ovf3 {
    height: auto;
    overflow-y: visible;
  }
}
/*-----------------------
bis-container
-----------------------*/
.bis-container {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .bis-container {
    display: block;
    margin-top: 20px;
  }
}
.bis-container:not(:first-child) {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .bis-container:not(:first-child) {
    margin-top: 20px;
  }
}
.bis-container__img {
  width: 25%;
}

@media (max-width: 768px) {
  .bis-container__img {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    width: calc(100% - 110px);
  }
}
.bis-container__txt-area {
  padding-right: 10px;
  width: 70%;
}

@media (max-width: 768px) {
  .bis-container__txt-area {
    margin-top: 15px;
    width: 100%;
  }
}
.bis-container__txt01 {
  line-height: 2;
}

/*-----------------------
bis-products-detail
-----------------------*/
.bis-products-detail {
  padding-top: 15px;
}

.bis-products-detail dt {
  border-bottom: 1px solid #d00;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.07em;
  padding-bottom: 8px;
  position: relative;
}

.bis-products-detail dt span {
  font-size: 14px;
  position: absolute;
  bottom: -30px;
  left: 0;
}

.bis-products-detail dd {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 30px;
}

.bis-products-detail__link, .mp-bottom__link, .mp-link {
  margin-top: 60px;
  text-align: right;
}

@media (max-width: 768px) {
  .bis-products-detail__link, .mp-bottom__link, .mp-link {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .bis-products-detail__link, .mp-bottom__link, .mp-link {
    text-align: center;
  }
}
.bis-products-detail__link.-four, .-four.mp-bottom__link, .-four.mp-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  width: 90%;
}

@media (max-width: 768px) {
  .bis-products-detail__link.-four, .-four.mp-bottom__link, .-four.mp-link {
    justify-content: center;
    flex-direction: column;
    margin-right: auto;
  }
}
.bis-products-detail__link.-four a, .-four.mp-bottom__link a, .-four.mp-link a {
  width: 49%;
  max-width: 220px;
}

@media (max-width: 768px) {
  .bis-products-detail__link.-four a, .-four.mp-bottom__link a, .-four.mp-link a {
    margin: 5px auto 0;
    width: 100%;
  }
}
.bis-products-detail__link.-four a:nth-child(odd), .-four.mp-bottom__link a:nth-child(odd), .-four.mp-link a:nth-child(odd) {
  margin-right: 5px;
}

@media (max-width: 768px) {
  .bis-products-detail__link.-four a:nth-child(odd), .-four.mp-bottom__link a:nth-child(odd), .-four.mp-link a:nth-child(odd) {
    margin-right: auto;
  }
}
.bis-products-detail__link.-four a:nth-child(n+3), .-four.mp-bottom__link a:nth-child(n+3), .-four.mp-link a:nth-child(n+3) {
  margin-top: 5px;
}

.bis-products-detail__link a, .mp-bottom__link a, .mp-link a {
  border: 1px solid #d00;
  border-radius: 30px;
  color: #d00;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.15em;
  padding: 10px 50px 10px 10px;
  position: relative;
  text-align: left;
}

.bis-products-detail__link a:hover, .mp-bottom__link a:hover, .mp-link a:hover {
  background: #d00;
  color: #fff;
}

.bis-products-detail__link a:hover span, .mp-bottom__link a:hover span, .mp-link a:hover span {
  background: #fff;
}

.bis-products-detail__link a:hover span::after, .mp-bottom__link a:hover span::after, .mp-link a:hover span::after {
  background: #fff;
}

.bis-products-detail__link a span, .mp-bottom__link a span, .mp-link a span {
  background: #d00;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
}

.bis-products-detail__link a span::after, .mp-bottom__link a span::after, .mp-link a span::after {
  background: #d00;
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  transform: rotate(35deg);
  width: 10px;
  height: 1px;
}

/*-----------------------
bis-subscription
-----------------------*/
.bis-subscription {
  margin-top: 5%;
}

@media (max-width: 480px) {
  .bis-subscription {
    display: flex;
    flex-direction: row-reverse;
  }
}
.bis-subscription__txt {
  line-height: 2;
}

@media (max-width: 480px) {
  .bis-subscription__txt:last-child {
    margin-top: 2em;
  }
}
@media (max-width: 350px) {
  .bis-subscription__txt {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .bis-subscription__img {
    text-align: center;
    width: 180px;
    max-width: 180px;
    min-width: 180px;
  }
}
/*-----------------------
bis-shoplist
-----------------------*/
.bis-shoplist {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .bis-shoplist {
    flex-wrap: wrap;
  }
}
.bis-shoplist__item {
  text-align: center;
  width: 20%;
}

@media (max-width: 768px) {
  .bis-shoplist__item {
    width: 48%;
  }
  .bis-shoplist__item:nth-child(n+3) {
    margin-top: 15px;
  }
}
.bis-shoplist__item a:hover {
  opacity: 0.8;
}

.bis-shoplist__img {
  display: block;
  margin: 0 auto;
  width: 150px;
}

.bis-shoplist__txt {
  display: block;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 30px;
}

.btc-ttl {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.07em;
  margin-top: 5%;
}

@media (max-width: 480px) {
  .btc-ttl {
    font-size: 16px;
    margin-top: 10%;
  }
}
/*-----------------------
bis-rakuten
-----------------------*/
.bis-rakuten {
  margin: 5% 0;
  padding: 5% 0;
}

@media (max-width: 768px) {
  .bis-rakuten {
    margin: 10% 0;
    padding: 10% 0;
  }
}
@media (max-width: 768px) {
  .bis-rakuten .bis-container {
    margin-top: 10%;
  }
}
.bis-rakuten__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}

@media (max-width: 1100px) {
  .bis-rakuten__inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
.bis-rakuten__ttl {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.07em;
}

.bis-rakuten__ttl span {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  margin-left: 10px;
}

@media (max-width: 480px) {
  .bis-rakuten__ttl span {
    display: block;
    margin: 10px 0 0;
  }
}
/*-----------------------
bis-hp-list
-----------------------*/
.bis-hp-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bis-hp-list__item {
  text-align: center;
  width: 48%;
}

.bis-hp-list__item:nth-child(n+3) {
  margin-top: 5%;
}

.bis-hp-list__item a:hover {
  opacity: 0.8;
}

.bis-hp-list__ttl {
  font-weight: bold;
  margin-top: 10px;
}

/*********************************************************
company.html
*********************************************************/
/*-----------------------
philosophy
-----------------------*/
.philosophy {
  position: relative;
}

.philosophy::after {
  background-image: url(image.php?id=010);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  margin-left: -250px;
  opacity: 0.8;
  position: absolute;
  top: -40%;
  left: 50%;
  width: 400px;
  height: 646px;
  z-index: -2;
}

@media (max-width: 768px) {
  .philosophy::after {
    background-image: url(image.php?id=011);
  }
}
.philosophy__box {
  margin-top: 10%;
}

@media (max-width: 768px) {
  .philosophy__box {
    margin-top: 15%;
  }
  .philosophy__box:first-child {
    margin-top: 20%;
  }
}
@media (max-width: 480px) {
  .philosophy__box {
    margin-top: 20%;
  }
  .philosophy__box:first-child {
    margin-top: 30%;
  }
}
.philosophy__ttl {
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 768px) {
  .philosophy__ttl {
    border-bottom: 1px solid #999;
    display: inline-block;
    padding: 0 0 8px 0;
    width: 50%;
  }
}
@media (max-width: 480px) {
  .philosophy__ttl {
    width: 100%;
  }
}
.philosophy__txt {
  margin-top: 5%;
}

@media (max-width: 768px) {
  .philosophy__txt {
    margin-top: 10%;
  }
}
.philosophy__txt p:not(:first-child) {
  margin-top: 3px;
}

.philosophy__txt span {
  background: #fff;
  display: inline-block;
  padding: 5px;
}

@media (max-width: 768px) {
  .philosophy__txt span {
    background: none;
    font-weight: bold;
  }
}
/*-----------------------
company-list
-----------------------*/
.company-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .company-list {
    display: block;
  }
}
.company-list__item {
  background: #f7f7f7;
  padding: 15px;
  width: 48%;
}

@media (min-width: 481px) {
  .company-list__item:nth-child(n+3) {
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .company-list__item {
    padding: 10px;
    width: 100%;
  }
  .company-list__item:nth-child(n+2) {
    margin-top: 15px;
  }
}
.company-list__ttl {
  color: orange;
  font-weight: bold;
  position: relative;
}

@media (max-width: 480px) {
  .company-list__item:nth-child(even) .company-list__ttl {
    margin-right: 25px;
    text-align: right;
  }
}
.company-list__ttl::after {
  background: orange;
  content: "";
  display: inline-block;
  margin: -0.5px 0 0 5px;
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 1px;
}

.-management .company-list__ttl {
  font-size: 24px;
}

.company-list__content {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
}

/*-----------------------
company-wrapper
-----------------------*/
.company-wrapper {
  margin-top: 10%;
}

@media (max-width: 768px) {
  .company-wrapper {
    margin-top: 15%;
  }
}
@media (max-width: 480px) {
  .company-wrapper {
    margin-top: 30%;
  }
}
/*-----------------------
company-profile
-----------------------*/
.company-profile {
  margin-top: 5%;
}

@media (max-width: 768px) {
  .company-profile {
    margin-top: 10%;
  }
}
@media (max-width: 480px) {
  .company-profile {
    margin-top: 20%;
  }
}
.company-profile__table {
  margin-top: 3%;
  width: 100%;
}

@media (max-width: 768px) {
  .company-profile__table:not(:last-child) {
    margin-bottom: 10%;
  }
}
@media (max-width: 480px) {
  .company-profile__table:not(:last-child) {
    margin-bottom: 20%;
  }
}
.company-profile__table th,
.company-profile__table td {
  border-color: #999;
  border-style: solid;
  border-width: 1px 0;
  font-size: 14px;
  line-height: 2;
  padding: 20px 0;
}

@media (max-width: 480px) {
  .company-profile__table th,
  .company-profile__table td {
    display: block;
    padding: 0;
  }
}
@media (max-width: 480px) {
  .company-profile__table tr {
    display: block;
    border-top: 1px solid #999;
    padding: 10px;
  }
  .company-profile__table tr:last-child {
    border-bottom: 1px solid #999;
  }
}
.company-profile__table th {
  color: #000;
  font-weight: bold;
  text-align: left;
  width: 20%;
}

@media (max-width: 480px) {
  .company-profile__table th {
    border-width: 0;
    margin-bottom: 1em;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .company-profile__table td {
    border-width: 0;
  }
}
.company-profile__postal-code {
  display: inline-block;
  margin-right: 10px;
}

.company-profile__list li:not(:first-child) {
  margin-top: 1em;
}

/*********************************************************
products.html
*********************************************************/
/*-----------------------
products-list
-----------------------*/
.products-list {
  display: flex;
  flex-wrap: wrap;
}

.products-list__item {
  text-align: center;
  width: 30%;
}

.products-list__item:nth-child(3n+2) {
  margin-right: 4.5%;
  margin-left: 4.5%;
}

.products-list__item:nth-child(n+4) {
  margin-top: 5%;
}

.products-list__link:hover {
  opacity: 0.8;
}

.products-list__ttl {
  display: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.07em;
  margin-top: 10px;
}

/*********************************************************
marketplace.html
*********************************************************/
/*-----------------------
mp-top
-----------------------*/
.mp-top__container {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .mp-top__container {
    flex-direction: column-reverse;
  }
}
.mp-top__txt {
  font-size: 14px;
  line-height: 2;
  margin-right: 5%;
  width: 65%;
}

@media (max-width: 768px) {
  .mp-top__txt {
    margin: 15px 0 0;
    width: 100%;
  }
}
.mp-top__img {
  text-align: center;
  width: 30%;
}

@media (max-width: 768px) {
  .mp-top__img {
    margin: 0 auto;
    width: 100%;
  }
}
.mp-top__img img {
  width: 300px;
}

@media (max-width: 310px) {
  .mp-top__img img {
    padding: 2%;
  }
}
/*-----------------------
mp-link
-----------------------*/
.mp-link {
  margin-top: 20px;
}

/*-----------------------
mp-service-list
-----------------------*/
.mp-service-list {
  margin-top: 3%;
}

/*-----------------------
mp-service-detail
-----------------------*/
.mp-service-detail__img {
  margin-top: 3%;
  text-align: center;
}

.mp-service-detail__txt {
  margin-top: 5%;
}

.mp-service-detail__txt p {
  font-size: 14px;
  line-height: 2;
}

.mp-service-detail__txt p:not(:first-child) {
  margin-top: 2em;
}

/*-----------------------
mp-game
-----------------------*/
.mp-game {
  margin-top: 5%;
}

.mp-game__ttl {
  border-bottom: 1px solid #333;
  font-weight: bold;
  padding-bottom: 5px;
}

.mp-game__list {
  display: flex;
  margin-top: 3%;
}

@media (max-width: 768px) {
  .mp-game__list {
    display: block;
  }
}
.mp-game__item {
  margin-right: 3%;
  width: 30%;
}

.mp-game__item:nth-dhild(3n) {
  margin-right: 0;
}

@media (max-width: 768px) {
  .mp-game__item {
    text-align: center;
    width: 100%;
  }
  .mp-game__item:not(:first-child) {
    margin-top: 3%;
  }
}
/*-----------------------
mp-app
-----------------------*/
.mp-app {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3%;
}

@media (max-width: 768px) {
  .mp-app {
    display: block;
  }
}
.mp-app__img {
  margin-right: 5%;
}

@media (max-width: 768px) {
  .mp-app__img {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .mp-app__store {
    margin-top: 5%;
  }
}
.mp-app__apple,
.mp-app__google {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .mp-app__apple,
  .mp-app__google {
    justify-content: center;
  }
}
.mp-app__google {
  margin-top: 5%;
}

.mp-app__box {
  font-size: 14px;
  width: 60%;
}

@media (max-width: 768px) {
  .mp-app__box {
    text-align: center;
  }
}
.mp-app__box img {
  display: block;
  margin-top: 10px;
  width: 200px;
}

@media (max-width: 768px) {
  .mp-app__box img {
    margin: 10px auto 0;
  }
}
.mp-app__qr {
  text-align: center;
  width: 40%;
}

.mp-app__qr img {
  width: 150px;
}

/*-----------------------
mp-bottom
-----------------------*/
.mp-bottom {
  margin-top: 10%;
  text-align: center;
}

.mp-bottom__img {
  text-align: center;
}

.mp-bottom__img img {
  width: 90%;
  max-width: 300px;
}

.mp-bottom__link {
  margin-top: 20px;
  text-align: center;
}

/*********************************************************
sitemap.html
*********************************************************/
/*-----------------------
sitemap-list
-----------------------*/
.sitemap-list__item:not(:first-child) {
  margin-top: 2em;
}

.sitemap-list__item a {
  color: #4ca3ff;
  text-decoration: underline;
}

.sitemap-list__item a span {
  background: #404040;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  vertical-align: middle;
  width: 15px;
  height: 15px;
}

.sitemap-list__item a span::after {
  border-color: transparent transparent transparent #fff;
  border-width: 3px 0 3px 5px;
  border-style: solid;
  height: 0;
  width: 0;
  content: "";
  margin: -3px 0 0 -2.5px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.sitemap-list__item a:hover {
  text-decoration: none;
}

.sitemap-list__item ul {
  margin-left: 3em;
}

.sitemap-list__item ul li {
  font-size: 14px;
  margin-top: 1em;
}

/*********************************************************
privacy.html
*********************************************************/
/*-----------------------
privacy
-----------------------*/
.privacy {
  margin-top: 5%;
}

.privacy a {
  color: #0084db;
  text-decoration: underline;
}

.privacy a:hover {
  text-decoration: none;
}

.privacy p {
  font-size: 14px;
  line-height: 2;
  margin-top: 1em;
}

.privacy__ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 3%;
}

.privacy__list {
  font-size: 14px;
  counter-reset: number 0;
}

.privacy__item {
  line-height: 2;
  margin-top: 1em;
  position: relative;
}

.privacy__item::before {
  position: absolute;
  top: 0;
  left: 0;
}

.-num > .privacy__item {
  counter-increment: number 1;
  padding-left: 5em;
}

.-num > .privacy__item::before {
  content: "(" counter(number) ")";
  display: inline-block;
}

.-dot > .privacy__item {
  counter-increment: number 1;
  padding-left: 5em;
}

.-dot > .privacy__item::before {
  content: counter(number) ".";
  display: inline-block;
}

.-roman > .privacy__item {
  counter-increment: number 1;
  padding-left: 3em;
}

.-roman > .privacy__item::before {
  content: counter(number);
  display: inline-block;
}

.-disc > .privacy__item {
  list-style-type: disc;
  padding-left: 1em;
}

.-circle > .privacy__item {
  padding-left: 1.5em;
}

.-circle > .privacy__item::before {
  display: inline-block;
}

.-circle > .privacy__item:nth-child(1)::before {
  content: "①";
}

.-circle > .privacy__item:nth-child(2)::before {
  content: "②";
}

.-circle > .privacy__item:nth-child(3)::before {
  content: "③";
}

.-circle > .privacy__item:nth-child(4)::before {
  content: "④";
}

.-circle > .privacy__item:nth-child(5)::before {
  content: "⑤";
}

.-circle > .privacy__item:nth-child(6)::before {
  content: "⑥";
}

.-circle > .privacy__item:nth-child(7)::before {
  content: "⑦";
}

.-circle > .privacy__item:nth-child(8)::before {
  content: "⑧";
}

.-circle > .privacy__item:nth-child(9)::before {
  content: "⑨";
}

.-circle > .privacy__item:nth-child(10)::before {
  content: "⑩";
}

.privacy__pdf {
  margin-top: 1em;
}

.privacy__bottom {
  margin-top: 3em;
  text-align: right;
}

.privacy__table {
  margin-top: 5px;
  width: 100%;
}

.privacy__table th,
.privacy__table td {
  border: 1px solid #333;
  font-size: 12px;
  padding: 5px;
}

.privacy__japhic img {
  width: 150px;
}

/*********************************************************
company.html
*********************************************************/
.news-article {
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 30px;
  margin-top: 50px;
}

.news-container article p.midashi a {
  display: block;
  padding: 0 0 20px 0;
  border-color: #424242;
  border-style: solid;
  border-width: 0 0 1px 0;
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 30px;
  text-decoration: none;
}

.news-container article p.date {
  margin: 20px 0 0 0;
  color: #424242;
  font-size: 16px;
  letter-spacing: 4px;
}

.news-container article p.theme {
  margin: 20px 0 0 0;
}

.news-container article p.theme a {
  display: inline-block;
  padding: 5px;
  background: #424242;
  color: #fff;
  font-size: 16px;
  letter-spacing: 4px;
  text-decoration: none;
}

.news-container article div.text {
  margin: 20px 0 0 0;
  color: #424242;
  font-size: 16px;
  letter-spacing: 4px;
  line-height: 30px;
}

.news-container .sub {
  display: table;
  width: 100%;
  margin: 50px 0 0 0;
  table-layout: fixed;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .news-container .sub {
    display: block;
  }
}
.news-container .sub article {
  display: table-cell;
  vertical-align: top;
  background: #ccc;
}

@media (max-width: 768px) {
  .news-container .sub article {
    display: block;
  }
}
.news-container .sub article p {
  padding: 10px 0;
  background: #424242;
  color: #fff;
  font-weight: bold;
  letter-spacing: 4px;
  text-align: center;
}

.news-container .sub article ul {
  list-style-type: none;
  padding: 10px;
}

.news-container .sub article ul li {
  display: block;
}

.news-container .sub article ul li a {
  display: block;
  padding: 10px;
  background: #fff;
  color: #424242;
  font-size: 14px;
  letter-spacing: 4px;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-container .sub article ul li:nth-of-type(n+2) a {
  border-color: #D3D3D3;
  border-style: dashed;
  border-width: 1px 0 0 0;
}

.news-container .sub article ul li a:hover {
  text-decoration: underline;
}

/*********************************************************
company.html
*********************************************************/
/*-----------------------
news-list
-----------------------*/