/* max-width 960px
   height auto

   【スマホ切り替え】
   ヘッダー、ナビ、フッター　768px
   メイン　600px

	 z-index
   1  body .site

*/

/************** トップエリア **************/
#content .top-area .frame {
  position: relative;
  padding-top: 13rem;
  padding-bottom: 24rem;
}
#content .top-area .frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 70%;
  background-color: #a2f1d9;
  border-radius: 0 30px 30px 0;
  z-index: -1;
}
#content .top-area .frame .title div:first-of-type {
  width: 410px;
  padding-top: 1rem;
  position: relative;
}
#content .top-area .frame .title div:first-of-type:before {
  content: "";
  position: absolute;
  top: 0;
  left: -2rem;
  width: 127px;
  height: 127px;
  background-color: #ffc47d;
  border-radius: 50%;
}
#content .top-area .frame .title div h2 {
  font-size: 71px;
  font-weight: normal;
  line-height: 110%;
  border-bottom: 1px solid #000;
}
#content .top-area .frame .title div p {
  font-size: 20px;
  text-align: right;
  position: relative;
  z-index: 1;
}
#content .top-area .frame .img {
  position: absolute;
  top: 9rem;
  right: 0;
  max-width: 800px;
  width: 60%;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #content .top-area .frame .title {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  #content .top-area .frame {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  #content .top-area .frame::before {
    width: 80%;
    height: 95%;
  }
  #content .top-area .frame .title {
    margin-bottom: 2rem;
  }
  #content .top-area .frame .title div:first-of-type {
    width: 250px;
    margin-left: 2rem;
  }
  #content .top-area .frame .title div:first-of-type::before {
    width: 107px;
    height: 107px;
  }
  #content .top-area .frame .title div h2 {
    font-size: 40px;
  }
  #content .top-area .frame .img {
    position: relative;
    top: auto;
    width: 100%;
    border-radius: 0;
  }
}

/************** タイトル、テーブル共通 **************/
.guide > div {
  text-align: center;
}
.guide h4 {
  margin: 0 auto;
  margin-bottom: 1rem;
  font-size: 34px;
  display: inline-block;
  padding: 0 4rem;
  position: relative;
}
.guide h4::before,
.guide h4::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-color: #5ce6ff;
  border-radius: 50%;
  z-index: -1;
}
.guide h4::before {
  left: 0;
}
.guide h4::after {
  right: 0;
}
.guide .table {
  align-items: start;
  border-radius: 30px;
  overflow: hidden;
}
.guide .table span {
  font-size: 40px;
}
.guide .table p.special {
  font-size: 13px;
  text-align: center;
}
.guide .table .tr {
  text-align: center;
}
.guide .table .th,
.guide .table .td {
  padding: 1rem 0;
}
.guide .table .tr:not(:last-of-type) .th {
  border-right: 1px solid #fff;
}
.guide .table span.red {
  color: #f23f5e;
}
.guide .table.blue {
  border: 1px solid #a2f1d9;
}
.guide .table.blue .tr .th {
  background-color: #a2f1d9;
}
.guide .table.blue .tr:not(:last-of-type) .td {
  border-right: 1px solid #a2f1d9;
}
.guide .table.beige {
  border: 1px solid #ffc47d;
}
.guide .table.beige .tr .th {
  background-color: #ffc47d;
}
.guide .table.beige .tr:not(:last-of-type) .td {
  border-right: 1px solid #ffc47d;
}
@media screen and (max-width: 767px) {
  .guide h4 {
    font-size: 23px;
    padding: 0 3rem;
  }
  .guide h4::before,
  .guide h4::after {
    width: 35px;
    height: 35px;
  }
  .guide .table {
    flex-wrap: wrap;
  }
  .guide .table span {
    font-size: 31px;
  }
  .guide .table .tr {
    font-size: 14px;
  }
  .guide .table .tr:nth-of-type(2) .th {
    border-right: 0;
  }
  .guide .table .tr .td {
    padding: 2rem 0;
  }
}

/************** アンカーメニュー **************/
.anchor-menu,
section {
  font-size: 20px;
  margin-bottom: 5rem;
}
section {
  max-width: 450px;
  margin: 3rem auto;
  text-align: center;
}
.anchor-menu ul:first-of-type {
  max-width: 720px;
  width: auto;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.anchor-menu ul li {
  flex-basis: 30%;
}
.anchor-menu ul li a,
section a.button {
  display: block;
  border-radius: 30px;
  padding: 1rem 0;
}
.anchor-menu ul:first-of-type li a,
section a.button {
  border: 1px solid #5ce6ff;
  background-color: #5ce6ff;
}
.anchor-menu ul:last-of-type li a {
  border: 1px solid #ffc47d;
  background-color: #ffc47d;
}
.anchor-menu ul li a:hover,
section:hover a.button {
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .anchor-menu {
    font-size: 13px;
  }
  .anchor-menu ul:first-of-type {
    margin-bottom: 1rem;
  }
  .anchor-menu ul li {
    flex-basis: 32%;
  }
}

/************** 営業時間、入園料、駐車料 **************/
.zoo-information {
  max-width: 750px;
  width: auto;
  margin: 0 auto;
  margin-bottom: 5rem;
}
.zoo-information h4 {
  margin-bottom: 2rem;
}
.zoo-information .frame p {
  text-align: center;
}
.zoo-information .frame {
  padding: 3rem 1rem;
  border: 1px solid #b3b3b3;
  position: relative;
}
.zoo-information .frame::before,
.zoo-information .frame::after {
  content: "";
  position: absolute;
  background-color: #fff;
}
.zoo-information .frame::before {
  top: 50%;
  left: -1px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 101%;
  height: calc(100% - 70px);
}
.zoo-information .frame::after {
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: calc(100% - 70px);
  height: 101%;
}
.zoo-information .frame h3 {
  font-size: 22px;
  font-weight: normal;
  padding: 0.1rem 0.4rem;
  background-repeat: no-repeat;
  background-position: 0.2rem center;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.zoo-information .frame h3::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.zoo-information .frame p {
  font-size: 33px;
  line-height: 90%;
}
.zoo-information .frame p span.small {
  font-size: 16px;
}
.zoo-information .frame .time {
  flex-basis: 40%;
  position: relative;
  z-index: 1;
  padding-right: 1rem;
}
.zoo-information .frame .time h3 {
  padding-left: 2.2rem;
  background-image: url(../img/common/img-time.png);
  background-size: 1.8rem;
}
.zoo-information .frame .time h3::after {
  background: #a2f1d9;
}
.zoo-information .frame .time p span.small {
  line-height: 100%;
}
.zoo-information .frame .time p span.twilight {
  font-weight: bold;
}
.zoo-information .frame .holiday {
  flex-basis: 60%;
  position: relative;
  z-index: 1;
}
.zoo-information .frame .holiday h3 {
  padding-left: 2.2rem;
  background-image: url(../img/top/img-ticket.png);
  background-size: 1.8rem;
}
.zoo-information .frame .holiday h3::after {
  background: #5ce6ff;
}
.zoo-information .frame .holiday p span {
  color: #ff0000;
}
.zoo-information .frame .holiday p span.small {
  display: inline-block;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .zoo-information .frame .time::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 1px;
    height: 180%;
    background-color: #404040;
  }
}
@media screen and (max-width: 767px) {
  .zoo-information .frame {
    display: block;
  }
  .zoo-information .frame .time {
    padding-bottom: 2rem;
  }
}

/************** カレンダー **************/
.calendar-box {
  margin-bottom: 5rem;
}
.calendar-box h4 {
  margin-bottom: 2rem;
}
.calendar-box .nav-next {
  float: none;
}
.calendar-box table.xo-month {
  align-items: center;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #a2f1d9;
  border-right-width: 0;
}
.xo-event-calendar table.xo-month td,
.xo-event-calendar table.xo-month th {
  border: 1px solid #a2f1d9;
  background-color: transparent;
}
.xo-event-calendar table.xo-month th {
  background-color: #a2f1d9;
  padding: 0.5rem 0 !important;
}
.xo-event-calendar table.xo-month th:not(:last-of-type) {
  border-right: 1px solid #fff;
}
.xo-event-calendar table.xo-month .month-dayname td:first-of-type,
.xo-event-calendar table.xo-month .month-dayname td .holiday-holiday {
  color: #d00;
}
.xo-event-calendar table.xo-month .month-dayname td:last-of-type {
  color: #00d;
}
.xo-event-calendar table.xo-month .month-dayname td div.today {
  color: #5ce6ff;
}
.xo-event-calendar p.holiday-title:last-of-type {
  display: none;
}
@media screen and (max-width: 767px) {
  .calendar-box {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

/************** 料金 **************/
.fee {
  margin-bottom: 5rem;
}
.fee > p {
  color: #f23f5e;
  margin-bottom: 1rem;
  text-align: center;
}
.fee > div > p {
  font-size: 23px;
  margin-bottom: 1rem;
}
.fee > div > p span {
  font-size: 16px;
}
.fee .general,
.fee .group {
  margin-bottom: 3rem;
}
.fee .table .tr {
  flex-basis: 25%;
}
.fee .general .table,
.fee .common .table {
  align-items: start;
}
.fee .general .table .tr:last-of-type .th,
.fee .common .table .tr:last-of-type .th {
  background-color: #ffc47d;
}
.fee .general .table .tr:last-of-type .td,
.fee .common .table .tr:last-of-type .td {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.fee .general .table .tr:not(:last-of-type) .td,
.fee .common .table .tr:not(:last-of-type) .td {
  padding: 1.5rem 0;
}
.fee .table .tr:last-of-type .td ul {
  text-align: justify;
}
.fee ul li {
  background-image: url(../img/reservation/img-link.png);
  background-size: 1rem;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 1.5rem;
}
.fee ul a {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.fee ul a::after {
  content: "";
  background: #ffc47d;
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
  z-index: -1;
}
.fee ul a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.fee .common p.list {
  text-align: left !important;
  font-size: 16px;
  margin-top: 1rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .fee .common .table .tr:not(:last-of-type) {
    flex-basis: 37.5%;
  }
  .fee .common ul a {
    margin-left: 0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .fee {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .fee > div > p {
    font-size: 16px;
    text-indent: -1.3em;
    margin-left: 1.3em;
  }
  .fee > div > p span {
    font-size: 14px;
  }
  .fee .table .tr {
    flex-basis: 50%;
  }
  .fee .common .table .tr:last-of-type {
    flex-basis: 100%;
  }
  .fee .general .table .tr:last-of-type .td,
  .fee .common .table .tr:last-of-type .td {
    padding: 1rem 0;
  }
}

/************** チケット **************/
.ticket {
  margin-bottom: 5rem;
}
.ticket h4 {
  margin-bottom: 1rem;
}
.ticket > p {
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.ticket > div > p {
  font-size: 23px;
  margin-bottom: 1rem;
}
.ticket > div > p span {
  font-size: 16px;
}
.ticket .zoo {
  margin-bottom: 3rem;
}
.ticket .table .tr {
  flex-grow: 4;
}
.ticket .zoo .table .tr:not(:nth-of-type(2)) {
  flex-basis: 25%;
}
.ticket .zoo .table .tr:nth-of-type(2) {
  flex-basis: 50%;
}
.ticket .common p.ticket-caption {
  text-align: left !important;
  font-size: 16px;
  margin-top: 1rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .ticket > p {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .ticket {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .ticket > div > p {
    font-size: 16px;
    text-indent: -1.3em;
    margin-left: 1.3em;
  }
  .ticket > div > p span {
    font-size: 14px;
  }
  .ticket .table .tr {
    flex-basis: 50%;
  }
  .ticket .common .table .tr:last-of-type .th {
    padding: 0.2rem 0;
  }
  .ticket .zoo .table .tr:nth-of-type(2) {
    order: 3;
    flex-basis: 100% !important;
  }
  .ticket .zoo .table .tr:last-of-type {
    order: 2;
  }
}

/************** 駐車料 **************/
.parking {
  margin-bottom: 3rem;
}
.parking h4 {
  margin-bottom: 2rem;
}
.parking .table .tr {
  flex-basis: 25%;
}
.parking .table .tr:last-of-type .td {
  background-color: #fff986;
  max-height: 90px;
}
.parking > p {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .parking {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .parking .table .tr {
    flex-basis: 50%;
  }
  .parking > p {
    font-size: 14px;
    text-align: center;
  }
}

/************** リンク **************/
.guide .link {
  margin-bottom: 5rem;
}
.guide .link a {
  align-items: end;
  flex-basis: 48%;
  font-size: 20px;
  padding: 1rem;
  border-radius: 50px;
  position: relative;
}
.guide .link a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  border-radius: 30px;
  z-index: -1;
}
.guide .link a:first-of-type::after {
  background-color: #5ce6ff;
}
.guide .link a:last-of-type::after {
  background-color: #ffc47d;
}
.guide .link a .box {
  flex-basis: calc(100% - 220px);
  margin-left: 1rem;
  margin-bottom: 1rem;
}
.guide .link a .box div {
  max-width: 75px;
  width: auto;
  margin-top: 1rem;
}
.guide .link a .img {
  flex-basis: 200px;
}
@media screen and (max-width: 767px) {
  .guide .link {
    margin-left: 1rem;
    margin-right: 1rem;
    display: block;
  }
  .guide .link a .box {
    flex-basis: calc(100% - 160px);
    font-size: 14px;
  }
  .guide .link a .box div {
    max-width: 50px;
  }
  .guide .link a .img {
    flex-basis: 140px;
  }
}

/****************** お子さま連れの方ページ ******************/
.child #content .top-area .frame::before {
  background-color: #5ce6ff;
}
.child #content .top-area .frame .title .img-park {
  position: absolute;
  bottom: -16rem;
  left: 7rem;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .child #content .top-area .frame {
    padding-bottom: 16rem;
  }
  .child #content .top-area .frame::before {
    height: 75%;
  }
  .child #content .top-area .frame .title div:first-of-type {
    width: 270px;
  }
  .child #content .top-area .frame .title div p {
    font-size: 18px;
    position: relative;
  }
  .child #content .top-area .frame .title .img-park {
    bottom: 2rem;
    width: 180px;
  }
}

.child .guide h4 {
  margin-bottom: 2rem;
}
.child .guide .toilet h4 {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .child .guide > div:not(:first-of-type) {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

/************** トイレ **************/
.toilet {
  margin-bottom: 5rem;
}
.toilet p.attention {
  font-size: 20px;
  text-align: center;
}
.toilet .frame {
  flex-wrap: wrap;
}
.toilet .frame:after {
  content: "";
  display: block;
  width: 31%;
  height: 0;
}
.toilet .frame .box {
  flex-basis: 31%;
  margin-top: 2rem;
}
.toilet .frame .box img {
  border-radius: 30px;
}
.toilet .frame .box p {
  font-size: 23px;
  margin-top: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .toilet p.attention {
    display: none;
  }
  .toilet .frame {
    display: block;
  }
  .toilet .frame .box:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  .toilet .frame .box p {
    font-size: 18px;
  }
}

/************** レンタル **************/
.child .rental {
  margin-bottom: 5rem;
}
.child .rental .table .tr {
  flex-grow: 5;
}
.child .rental > p {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .child .rental .table .tr:not(:last-of-type) {
    flex-basis: 50%;
  }
  .child .rental .table .tr:last-of-type {
    flex-basis: 100%;
  }
  .child .rental .table .tr:nth-of-type(2) .th,
  .child .rental .table .tr:nth-of-type(4) .th {
    border: 0;
  }
  .child .rental > p {
    text-align: center;
  }
}

/************** 授乳 **************/
.child .breastfeeding {
  margin-bottom: 5rem;
}
.child .breastfeeding h4 {
  margin-bottom: 2rem;
}
.child .breastfeeding .frame .box {
  flex-basis: 48%;
}
.child .breastfeeding .frame .box img {
  border-radius: 30px;
}
.child .breastfeeding .frame .box p {
  font-size: 23px;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .child .breastfeeding .frame {
    display: block;
  }
  .child .breastfeeding .frame .box:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  .child .breastfeeding .frame .box p {
    font-size: 18px;
  }
}

/************** 妊娠中 **************/
.child .pregnant {
  margin-bottom: 3rem;
}
.child .pregnant .table {
  align-items: stretch;
}
.child .pregnant .table .tr:first-of-type {
  flex-basis: 75%;
}
.child .pregnant .table .tr:first-of-type .th {
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 23px;
}
.child .pregnant .table .tr:last-of-type {
  flex-basis: 25%;
}
@media screen and (max-width: 767px) {
  .child .pregnant .table {
    display: block;
  }
  .child .pregnant .table .tr:first-of-type .th {
    font-size: 16px;
    border-right: 0;
  }
  .child .pregnant .table .tr:last-of-type .th {
    background-color: transparent;
  }
  .child .pregnant .table .tr:last-of-type .td {
    padding-top: 0;
    padding-bottom: 1rem;
  }
}

/****************** お身体の不自由な方ページ ******************/
.assist #content .top-area .frame::before {
  background-color: #ffc47d;
}
.assist #content .top-area .frame .title div:first-of-type::before {
  background-color: #5ce6ff;
}
.assist #content .top-area .frame .title .img-park {
  position: absolute;
  bottom: -15rem;
  left: 7rem;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .assist #content .top-area .frame {
    padding-bottom: 16rem;
  }
  .assist #content .top-area .frame::before {
    height: 75%;
  }
  .assist #content .top-area .frame .title div:first-of-type {
    width: 290px;
  }
  .assist #content .top-area .frame .title div p {
    font-size: 18px;
  }
  .assist #content .top-area .frame .title .img-park {
    bottom: 2rem;
    width: 180px;
  }
}

.assist .guide h4 {
  margin-bottom: 2rem;
}
.assist .guide .toilet h4 {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .assist .guide > div:not(:first-of-type) {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

/************** レンタル **************/
.assist .rental {
  max-width: 900px;
  width: auto;
  margin: 0 auto;
  margin-bottom: 5rem;
}
.assist .rental .box {
  flex-basis: 48%;
}
.assist .rental .box img {
  border-radius: 30px;
  overflow: hidden;
}
.assist .rental .box p {
  font-size: 23px;
  margin-top: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .assist .rental {
    display: block;
  }
  .assist .rental .box:first-of-type {
    margin-bottom: 3rem;
  }
  .assist .rental .box p {
    font-size: 19px;
  }
}

/************** 減免 **************/
.exemption {
  margin-bottom: 5rem;
}
.exemption .table {
  align-items: stretch;
}
.exemption .table .tr:first-of-type {
  flex-basis: 30%;
}
.exemption .table .tr:first-of-type .th:not(:last-of-type) {
  background-color: #bffff8;
  border-bottom: 1px solid #fff;
}
.exemption .table .tr:nth-of-type(2) {
  flex-basis: 50%;
}
.exemption .table .tr:nth-of-type(2) .td {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 300%;
}
.exemption .table .tr:nth-of-type(2) .td {
  height: calc(100% - 57.6px);
  border: 0 !important;
}
.exemption .table .tr:last-of-type {
  flex-basis: 20%;
}
.exemption .table .tr:last-of-type .th,
.exemption .table .tr:last-of-type .td {
  background-color: #ffc47d;
}
@media screen and (min-width: 768px) {
  .exemption .table .tr:last-of-type .th,
  .exemption .table .tr:last-of-type .td {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 50%;
  }
  .exemption .table .tr:last-of-type .th {
    align-items: end;
  }
  .exemption .table .tr:last-of-type .td {
    align-items: start;
  }
}
@media screen and (max-width: 767px) {
  .exemption .table .tr:first-of-type {
    flex-basis: 50%;
  }
  .exemption .table .tr:nth-of-type(2) .td,
  .exemption .table .tr:nth-of-type(2) .td span {
    line-height: 150%;
  }
  .exemption .table .tr:nth-of-type(2) .th {
    border: 0 !important;
  }
  .exemption .table .tr:last-of-type {
    flex-basis: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .exemption .table .tr:last-of-type > div {
    flex-basis: 50%;
  }
  .exemption .table .tr:last-of-type .th {
    border-right: 1px solid #fff;
  }
  .exemption .table .tr:last-of-type .td {
    padding: 0.79rem 0;
  }
}

.child-link {
  max-width: 900px;
  width: auto;
  margin: 0 auto;
  margin-bottom: 5rem;
}
.child-link a {
  flex-basis: 48%;
  align-items: center;
  font-size: 20px;
  padding: 1rem;
  border-radius: 30px;
}
.child-link a:first-of-type {
  background-color: #5ce6ff;
}
.child-link a:last-of-type {
  background-color: #a2f1d9;
}
.child-link a p {
  flex-basis: calc(100% - 90px);
  padding-left: 2.5rem;
  background-size: 1.8rem;
  background-repeat: no-repeat;
  background-position: 0 center;
}
.child-link a:first-of-type p {
  background-image: url(../img/common/img-time.png);
}
.child-link a:last-of-type p {
  background-image: url(../img/top/img-ticket.png);
}
.child-link a .img {
  flex-basis: 70px;
}
@media screen and (max-width: 767px) {
  .child-link {
    display: block;
    font-size: 18px;
  }
  .child-link a:first-of-type {
    margin-bottom: 1rem;
  }
  .child-link a p {
    flex-basis: calc(100% - 70px);
    text-align: justify;
  }
  .child-link a .img {
    flex-basis: 50px;
  }
}
