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

ttl

------------------------------------------------------------*/
.ttl {
  background: url("../images/guidegame/ttl.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/*------------------------------------------------------------
contents_wrap
------------------------------------------------------------*/
.contents_wrap {
  width: 1100px;
  margin: 0 auto 100px;
}

@media only screen and (max-width: 767px) {
  .contents_wrap {
    width: 100%;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 100px;
}

.contents .contents-p-right {
  width: 40%;
}

@media only screen and (max-width: 767px) {
  .contents {
    display: block;
  }

  .contents .contents-p-right {
    width: 100%;
  }
}

.contents.r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.contents div {
  -webkit-flex-shrink: 500;
  -ms-flex-negative: 500;
  flex-shrink: 500;
  width: 55%;
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  .contents div {
    width: 100%;
  }
}

.contents figure {
  width: 40%;
}

@media only screen and (max-width: 767px) {
  .contents figure {
    width: 100%;
    margin-bottom: 20px;
  }
}

.contents figure img {
  width: 100%;
  height: auto;
}

.contents h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #60958f;
  font-weight: bold;
}

.contents p {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.contents span {
  display: block;
  text-align: center;
  font-style: italic;
  width: 80%;
}

/*------------------------------------------------------------
osusume
------------------------------------------------------------*/
.osusume {
  margin-bottom: 60px;
  width: 1100px;
  margin: 0 auto 50px;
}

@media only screen and (max-width: 767px) {
  .osusume {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.osusume h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #60958f;
}

.osusume ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.osusume ul li {
  width: 19%;
  background: #faf8f5;
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  border-radius: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 209px;
  text-align: center;
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  .osusume ul li {
    width: 42vw;
    height: 42vw;
  }
}

.osusume ul li:nth-of-type(2n) {
  margin-top: 60px;
}

@media only screen and (max-width: 767px) {
  .osusume ul li:nth-of-type(2n) {
    margin-top: 30px;
  }
}

.osusume p {
  text-align: center;
  font-size: 1.2rem;
}

/*------------------------------------------------------------
gaiyou
------------------------------------------------------------*/
.gaiyou h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.gaiyou dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  border-bottom: 1px solid #e8e3db;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .gaiyou dl {
    display: block;
  }
}

.gaiyou dl:nth-of-type(1) {
  border-top: 1px solid #e8e3db;
}

.gaiyou dt {
  margin-bottom: 0;
  width: 150px;
}

@media only screen and (max-width: 767px) {
  .gaiyou dt {
    width: 100%;
    margin-bottom: 10px;
    font-weight: bold;
  }
}

/*------------------------------------------------------------
.btn
------------------------------------------------------------*/
.btn a {
  background: #60958f;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  width: 350px;
  margin: 0 auto 40px;
  padding: 15px 0;
  border: none;
  display: block;
  font-size: 1.6rem;
  text-align: center;
}

.btn a:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 767px) {
  .btn a {
    width: 250px;
  }
}