/* CSS Document */
@media(min-width:1025px){
  .mobile-br{
    display: none;  
  }
}

/*--- トップ部分 ---*/
.section-top__mobile-mainvisual {
  display: block;
  width: 100%;
}
.section-top__pc-mainvisual {
  display: none;
}
.section-top__menubar {
  background-color: #eb6101;
}
ul.topnav {
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  display: inline-block;
  width: 100%;
}
ul.topnav li {
  float: none;
}
ul.topnav li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  color: white;
}
ul.topnav li a:hover {
  color: #333333;
  background-color: #ffef8a;
}
/*--- トップ部分(PC) ---*/
@media(min-width: 768px) {
  .section-top__mobile-mainvisual {
    display: none;
  }
  .section-top__pc-mainvisual {
    display: block;
    width: 100%;
  }
}
@media(min-width: 1025px) {
  .section-top__menubar {
    height: 70px;
  }
  ul.topnav {
    width: 1000px;
  }
  ul.topnav li {
    float: left;
  }
  ul.topnav li a {
    font-size: 16px;
    padding: 23px 16px;
    width: 250px;
  }
}

/*--- みまもりSOSって？ ---*/
.section-whats-sos{
  padding: 40px 20px;
  max-width: 550px;
  margin: 0 auto;
}
.section-whats-sos h2{
  font-size: 24px;
  color: #825121;
  margin-bottom: 30px;
}
.section-whats-sos__container-left img{
  width: 80%;
  max-width: 350px;
  margin-bottom: 40px;
}
.section-whats-sos__container p{
  text-align:left;
}

/*--- みまもりSOSって？（PC） ---*/
@media(min-width: 1025px){
  .section-whats-sos{
    max-width: 850px;
  }
  .section-whats-sos__container{
    display:flex;
  }
  .section-whats-sos__container-left{
    width: 425px;
  }
  .section-whats-sos__container-left img{
    margin-bottom: 0px;
  }
  .section-whats-sos__container-right{
    width: 425px;
  }
  .section-whats-sos__container-right p{
    font-size: 20px;
    line-height: 180%;
    color: #825121;
    margin-top: 28px;
  }
}

/*--- SOS発信・協力の流れ ---*/
.section-steps__line-wave, .section-steps__line-wave-under{
  position: relative;
  bottom: 0;
  width: 100%;
  height: 75px;
  transform: translateY(10px);
}
.section-steps__line-wave-under{
  transform: scale(1, -1);
}

.section-steps{
  background-color: #ffef8a;
  padding: 20px;
}
.section-steps__title{
  font-size: 24px;
  color: #e8340d;
  margin-bottom: 30px;
}
.section-steps__step{
  background-image: url("../images/sos/steps_bg.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  margin: 0 auto 30px;
  max-width: 350px;
  height: 420px;
}
.section-steps__step-num, .section-steps__step-title{
  line-height: 180%;
  float: left;
  color: white;
  letter-spacing: 4px;
  text-shadow    : 
       2px  2px 1px #e8340d,
      -2px  2px 1px #e8340d,
       2px -2px 1px #e8340d,
      -2px -2px 1px #e8340d,
       2px  0px 1px #e8340d,
       0px  2px 1px #e8340d,
      -2px  0px 1px #e8340d,
       0px -2px 1px #e8340d;        /* 文字の影 */
}
.section-steps__step-num{
  text-align:left;
  font-size: 40px;
  position:relative;
  left: 15px;
}
.section-steps__step-title{
  font-size: 36px;
  position:relative;
  top: 4px;
  left: 37px;
  margin-bottom: 10px;
}
.section-steps__step img{
  height: 200px;
  max-width: 300px;
}
.section-steps__step p{
  padding: 0 20px;
  text-align: left;
  font-size: 14px;
}
.section-steps__step-attention{
  font-size: 12px;
}
/*--- SOS発信・協力の流れ（PC） ---*/
@media(min-width: 1025px){
.section-steps__container{
  width: 850px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
  .section-steps__step p{
    font-size: 16px;
  }
  .section-steps__step-attention{
    font-size: 14px;
  }
}

/*--- アプリの使い方 --- */
.section-howto{
  padding: 40px 20px;
}
.section-howto__title{
  font-size: 24px;
  color: #f05017;
  margin-bottom: 10px;
}

.accordion {
  margin: 1em 0;
}
.accordion__summary {
  display: block;
  color: white;
  background: #f05017; /* 見出しの背景色 */
  font-weight: bold;
  position: relative;
  list-style: none; /* 矢印を消す */
  cursor: pointer;
  padding: 10px 38px 10px 38px;
}
.accordion__summary::-webkit-details-marker {
  display: none;
}
.accordion__summary::before {
  content: "▼";
  font-size: 1.4em; /* 記号のサイズ */
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.accordion__summary::after {
  content: "▼";
  font-size: 1.4em; /* 記号のサイズ */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.accordion[open] .accordion__summary::after, .accordion[open] .accordion__summary::before {
  content: "▲";
}
.accordion__detail {
  padding: 4px 10px;
  margin: 10px 0;
}
.accordion__detail img{
  width: 100%;
}

.accordion__text {
  margin: 0;
}

@media(min-width: 1025px){
  .section-howto{
    width: 1024px;
    margin: 0 auto;
  }
  .section-howto__title-attention{
    font-size: 20px;
  }
}

/*--- よくある質問 ---*/
.section-qa{
  background-color: #fffcea;
  padding: 40px 20px;
}

.section-qa__title{
  font-size: 24px;
  color: #825121;
  margin-bottom:20px;
}

.section-qa__accordion-area{
    list-style: none;
    max-width: 900px;
    margin:0 auto;
}

.section-qa__accordion-area li{
  color: #825121;
    margin: 10px 0;
}

.section-qa__accordion-area section {
  border: 1px solid #ccc;
}

.section-qa h3{
  text-align:left;
}

.section-qa .box{
  text-align: left;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
    margin:0 3% 3% 3%;
    padding: 3%;
  line-height: 160%;
}

/*--- アプリリンク ---*/
.section-app-link{
  background-color: #ffef8a;
  opacity: 0.8;
  padding: 40px 0;
}

.section-app-link__wrapper{
  width: 350px;
  margin: 0 auto;
}
.section-app-link h2{
  margin-bottom: 20px;
  font-size: 20px;
  color: #f05017;
}
.section-app-link__dl-button{
  display: flex;
  align-items: center;
  justify-content:space-evenly;
}

/*--- ストアボタン用 ---*/
.appstore-button{
  width: 124px;
  height: 40px;
  position: relative;
  left: -9px;
}

.playstore-button{
  width: 132px;
  height: 51px;
}

@media(min-width:1025px){
  .section-app-link__wrapper{
    width: 560px;
  }
  
  .section-app-link h2{
    font-size: 24px;
  }
  
  .appstore-button{
    width: 155px;
    height: 50px;
    position: relative;
    left: -9px;
  }

  .playstore-button{
    width: 165px;
    height: 64px;
  }
}