@charset "UTF-8";

.container .inner {
  max-width: 900px;
}

/* ------------------------------------------- 

access-blc

------------------------------------------- */

.access-inner {
  margin: 2rem auto auto;
  display: flex;
  justify-content: center;
  max-width: 780px;
}

.access-inner .left-blc {
  width: 50%;
  padding-right: 2rem;
  box-sizing: border-box;
  padding-left: 2rem;
  position: relative;
  font-weight: bold;
}

.access-inner .right-blc {
  width: 50%;
  padding-left: 2rem;
  box-sizing: border-box;
  font-weight: bold;
  position: relative;
}

.access-inner .left-blc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background-image: url(../../img/common/access_icon03.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 22px;
  height: 25px;
}

.access-inner .right-blc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background-image: url(../../img/common/access_icon02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 22px;
  height: 25px;
}

@media screen and (max-width:1000px) {

  .access-inner {
    flex-wrap: wrap;
    max-width: 520px;
  }

  .access-inner .left-blc {
    padding-right: 0;
    width: 100%;
  }

  .access-inner .right-blc {
    width: 100%;
    margin-top: 1rem;
  }

}

/* ------------------------------------------- 

ul-list

------------------------------------------- */

.ul-list li {
  display: flex;
  margin-top: 2rem;
}

.ul-list li .txt-blc {
  width: 55%;
  padding: 1rem 1rem;
  box-sizing: border-box;
}

.ul-list li .img-blc {
  width: 45%;
}

.ul-list li .txt-blc .ttl {
  font-size: 120%;
  font-weight: bold;
  display: block;
}

.ul-list li .txt-blc .ttl+.txt {
  margin-top: 10px;
}

.ul-list li:first-child {
  margin-top: 0;
}

.ul-list li .img-blc iframe {
  width: 100%;
  height: 300px;
}

@media screen and (max-width:1000px) {
  .ul-list li .img-blc iframe {
    height: 30vw;
  }
}

@media screen and (max-width:767px) {

  .ul-list li {
    flex-wrap: wrap;
    margin-top: 3rem;
  }

  .ul-list li .txt-blc {
    width: 100%;
    padding: 0;
  }

  .ul-list li .img-blc {
    width: 100%;
    margin-top: 10px;
  }

  .ul-list li .img-blc iframe {
    height: 300px;
  }
}

@media screen and (max-width:480px) {

  .ul-list li .txt-blc .ttl {
    font-size: 120%;
  }
}