@charset "UTF-8";
/********************チャートページ********************/
#chart {
  font-size: 18px;
}
#chart .container {
  position: relative;
}
#chart p {
  line-height: 1.5;
}

/*　タイトル・結果見出し　*/
.chart_ttl {
  padding-top: 24px;
  font-size: 32px;
  text-align: center;
}

.chart_txt {
  margin-top: 20px;
  text-align: center;
}

/*　チャート　*/
.choose_box {
  position: absolute;
  left: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 80%;
  height: 337px;
  margin-top: 48px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.choose_box .shitsumon {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 100%;
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.choose_box ul {
  position: absolute;
  top: 144px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: auto;
  text-align: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.choose_box ul li {
  display: table;
  width: calc((100% - 60px) / 2);
  margin-right: 60px;
  list-style: none;
}
.choose_box ul li:nth-child(2n) {
  margin-right: 0;
}
.choose_box ul li a {
  display: table-cell;
  padding: 14px 40px;
  border: 2px solid #f3a43e;
  border-radius: 6px;
  background-color: #f3a43e;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
}
.choose_box ul li a:hover {
  background-color: #fff;
  color: #f3a43e;
}

.fit {
  width: 100%;
}

/*　一つ前の質問に戻るボタン　*/
.btn_return {
  position: absolute;
  top: 278px;
  display: block;
  width: 100%;
}
.btn_return a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  margin: 0 auto;
  padding: 16px 60px;
  border: 1px solid #898989;
  border-radius: 6px;
  background-color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #898989;
  text-align: center;
  text-decoration: none;
}
.btn_return a:hover {
  opacity: 0.6;
}
.btn_return a i {
  position: absolute;
  top: 18px;
  left: 16px;
}

/*　注釈　*/
.chart_tyusyaku {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 768px;
  margin: 445px auto 60px;
  padding: 20px;
  border-radius: 5px;
  background: #fdedd8;
  line-height: 1.5;
}
.chart_tyusyaku p {
  margin-bottom: 10px;
}
.chart_tyusyaku p:last-child {
  margin-bottom: 0;
}

/********************結果ページ********************/
.chart_head01 {
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 1.4;
}

.txt_area {
  width: 700px;
  margin: 48px auto;
  line-height: 1.5;
}

.available {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 48px;
}
.available p {
  line-height: 1.5;
}

/*　アコーディオン　*/
.accordion_container {
  position: relative;
  margin-bottom: 15px;
  border-top: none;
  outline: 0;
}
.accordion_container .accordion_ttl {
  margin-top: 30px;
  padding: 16px 18px;
  border-radius: 6px;
  font-family: "Hiragino Kaku Gothic ProN", YuGothic, "游ゴシック", "游ゴシック体", sans-serif !important;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}
.accordion_container .accordion_ttl:first-of-type {
  margin-top: 0;
}
.accordion_container .accordion_ttl:hover {
  color: white;
  opacity: 0.7;
}
.accordion_container .accordion_ttl:hover i {
  color: #fff;
}

/* icon */
.accordion_ttl {
  position: relative;
}
.accordion_ttl:after {
  position: absolute;
  top: 21px;
  right: 20px;
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.accordion_ttl.open:after {
  top: 24px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.accordion_content {
  display: none;
  margin-top: -6px;
  padding: 26px 20px 10px;
  border-radius: 0 0 6px 6px;
  font-size: 16px;
}
.accordion_content h5 {
  margin-bottom: 4px;
}
.accordion_content p {
  margin-bottom: 20px;
}

.color01 {
  background: #f49c96;
}
.color01 + .accordion_content {
  background: #FDEBEA;
}

.color02 {
  background: #FFB938;
}
.color02 + .accordion_content {
  background: #FFF1D7;
}

.color03 {
  background: #76b7ee;
}
.color03 + .accordion_content {
  background: #E4F1FC;
}

.color04 {
  background: #B2CF3E;
}
.color04 + .accordion_content {
  background: #F0F5D8;
}

.color05 {
  background: #F9946D;
}
.color05 + .accordion_content {
  background: #FEEAE2;
}

/*　その他結果を見るリンク　*/
.other {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 48px;
}
.other p {
  margin-bottom: 10px;
}
.other .links li {
  line-height: 1.5;
  margin-bottom: 5px;
}
.other .links li:last-of-type {
  margin-bottom: 0;
}
.other .links li a::before {
  display: inline;
  content: ">";
}

/********************2022.07.05リンク追加********************/
.section {
  max-width: 700px;
  margin: 0 auto;
}

.basic {
  margin: 48px auto 60px;
}
.basic .recommends {
  border-top: 1px #ccc solid;
  border-bottom: 1px #ccc solid;
}
.basic .recommends li {
  border-bottom: 1px #ccc dashed;
  line-height: 1.5;
}
.basic .recommends li:last-of-type {
  border-bottom: none;
}
.basic .recommends li a {
  position: relative;
  display: block;
  padding: 20px 28px 20px 10px;
  color: #333;
  text-decoration: none;
}
.basic .recommends li a:hover {
  opacity: 0.5;
}
.basic .recommends li a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f105";
  transform: translate(0, -50%);
}

/* すきっぷの登録団体を紹介・神戸市のガイドや子育て支援事業等 */
.colored {
  background: #FFFAE2;
}
.colored .section {
  padding: 36px 0 48px;
  border-bottom: 1px solid #ccc;
}
.colored .section:last-of-type {
  border-bottom: none;
}
.colored .section h3 {
  margin-bottom: 16px;
  text-align: center;
}

.partner h3 img {
  width: 358px;
}

.city_kobe h3 img {
  width: 512px;
}

.media-list h4 {
  margin-bottom: 12px;
  line-height: 1.5;
}
.media-list h4 .loc {
  display: inline-block;
  box-sizing: border-box;
  height: 22px;
  margin-left: 10px;
  padding: 0px 10px;
  border: 1px solid #F17E31;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  color: #F17E31;
}
.media-list li {
  margin-bottom: 20px;
  padding: 20px;
  border-top: 4px solid #FFCB6B;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}
.media-list li:last-of-type {
  margin-bottom: 0;
}
.media-list p {
  margin-bottom: 12px;
  font-size: 16px;
}
.media-list p:last-of-type {
  margin-bottom: 0;
}

.city_kobe a::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 15px;
  font-weight: 600;
  content: "\f35d";
}

/* footer */
.colored + footer {
  padding: 14px;
  background-color: #FFBA3A;
}
.colored + footer p {
  color: #fff;
}

/********************768px以下********************/
@media screen and (max-width: 769px) {
  .chart_ttl {
    font-size: 28px;
  }
  .chart_txt {
    margin-top: 1em;
    font-size: 14px;
  }
  .txt_area {
    width: 100%;
    max-width: 700px;
    margin: 48px auto;
  }
  .choose_box {
    position: static;
    left: 0;
    height: auto;
    margin: 0 auto;
    padding-top: 32px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .choose_box .shitsumon {
    position: static;
    margin-bottom: 36px;
    font-size: 26px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .choose_box ul {
    position: static;
    margin-bottom: 32px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .choose_box ul li {
    width: 100%;
    margin-right: 0;
  }
  .choose_box ul li.even {
    margin-bottom: 28px;
  }
  .btn_return {
    position: static;
  }
  .btn_return a {
    padding: 13px 13px 13px 26px;
  }
  .btn_return a i {
    top: 17px;
    left: 16px;
    font-size: 15px;
  }
  .chart_tyusyaku {
    margin-top: 48px;
  }
}
/********************480px以下********************/
@media screen and (max-width: 480px) {
  #chart {
    font-size: 22px;
    font-size: 16px;
  }
  .choose_box {
    position: static;
    width: 100%;
    padding-top: 32px;
  }
  .choose_box ul {
    width: 100%;
    margin-bottom: 36px;
  }
  .choose_box ul li a {
    padding: 14px;
    font-size: 15px;
  }
  .choose_box .shitsumon {
    margin-bottom: 28px;
    font-size: 22px;
  }
  .btn_return a {
    width: 85%;
    padding: 10px;
    font-size: 14px;
  }
  .btn_return a i {
    top: 13px;
    left: 15px;
    font-size: 13px;
  }
  .chart_tyusyaku {
    margin-bottom: 36px;
    font-size: 14px;
  }
  /********************結果ページ********************/
  .chart_ttl {
    padding-top: 10px;
    font-size: 24px;
  }
  .chart_ttl img {
    width: 80%;
  }
  .chart_ttl.chart_kekka04 img {
    width: 100%;
  }
  .chartKekka_ttl img {
    width: 80%;
  }
  .txt_area {
    width: 100%;
    margin: 20px auto 30px;
  }
  .txt_area a:hover {
    opacity: 1;
  }
  .chart_head01 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .available {
    margin-bottom: 30px;
  }
  .accordion_container .accordion_ttl {
    margin-top: 15px;
    padding: 13px;
    border-radius: 3px;
  }
  .accordion_container .accordion_ttl:hover {
    opacity: 1;
  }
  .accordion_ttl:after {
    top: 15px;
  }
  .accordion_ttl.open:after {
    top: 19px;
  }
  .accordion_container .accordion_content {
    margin-top: -3px;
    padding: 16px 13px 5px;
  }
  .accordion_container .accordion_content h5 {
    margin-bottom: 3px;
  }
  .accordion_container .accordion_content p {
    margin-bottom: 13px;
  }
  .accordion_container .accordion_content a:hover {
    opacity: 0.7;
  }
  .other {
    margin-bottom: 28px;
  }
  .other .links li {
    margin-bottom: 5px;
  }
  /********************2022.07.05リンク追加********************/
  .section {
    padding: 0 10px;
  }
  .basic {
    margin: 30px 0;
  }
  .basic .recommends li a {
    padding: 13px 13px 13px 0;
  }
  .basic .recommends li a::after {
    right: 0;
  }
  /* すきっぷの登録団体を紹介・神戸市のガイドや子育て支援事業等 */
  .colored {
    margin-top: 20px;
  }
  .colored .section {
    padding: 24px 10px 28px;
  }
  .colored .section h3 {
    margin-bottom: 12px;
  }
  /* 見出し */
  .partner h3 img {
    width: 233px;
  }
  .city_kobe h3 img {
    width: 320px;
  }
  .media-list h4 {
    margin-bottom: 12x;
  }
  .media-list h4 .loc {
    height: 18px;
    margin-left: 5px;
    padding: 0 8px;
    border-radius: 13px;
    font-size: 12px;
    line-height: 18px;
  }
  .media-list li {
    margin-bottom: 13px;
    padding: 15px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  }
  .media-list li p {
    margin-bottom: 10px;
    font-size: 15px;
  }
}