@charset "UTF-8";
/* ----------------------------------------------------------------------
  
---------------------------------------------------------------------- */
#about .pc_hidden {
  display: none;
}

#about .sp_hidden {
  display: inline;
}

#about p {
  line-height: 1.6;
}

#about.inner {
  padding: 0 20px;
}

/* -- Introduction -- */
#about .intr {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 60px;
}

#about .intr h1{
  display: inline-block;
  position: relative;
  margin-bottom: 50px;
}

#about .intr h1:before{
  position: absolute;
  content: url(../img/about/about_ttl_before.png);
  top: -23px;
  left: -160px;
  z-index: -1;
}

#about .intr h1:after{
  position: absolute;
  content: url(../img/about/about_ttl_after.png);
  top: -23px;
  right: -168px;
  z-index: -1;
}

/* -- Section -- */
/* .sec_l：大セクション
   .sec_s：小セクション
   .sec_left：左テキスト
   .sec_right：右テキスト */
#about .sec {
  margin-bottom: 80px;
}

#about .sec_l .sec_container{
  display: flex;
  justify-content: space-between;
}

#about .sec_l.sec_right .sec_container{
  flex-direction: row-reverse;
}

/* -- Section > Text -- */
#about .sec_l .sec_container .sec_txt{
  flex-basis: 50%;
}

#about .sec_l.sec_left .sec_container .sec_txt{
  padding-right: 40px;
}

#about .sec_l.sec_right .sec_container .sec_txt{
  padding-left: 40px;
}

/* -- Section > Text > Title(sub) -- */
#about .sec .sec_ttl_sub{
  margin-top: 40px;
}

/* -- Section > Text > Title(main) -- */
#about .sec h2{
  margin-top: 20px;
  margin-bottom: 32px;
  text-align: left;
}

/* Section > Image(sub) */
#about .sec_l .sec_container .sec_img_sub img{
  margin-top: -40px;
  z-index: 1;
}

/* -- Recommended -- */
#about .rcmd {
  background: url(../img/bg_pink.jpg);
  padding: 60px 20px 70px;
  margin-bottom: 100px;
  position: relative;
}

#about .rcmd:before {
  position: absolute;
  content: url(../img/about/about_rcmd_before.png);
  top: -20px;
  right: -20px;
  z-index: 1;
}

#about .rcmd:after {
  position: absolute;
  content: url(../img/about/about_rcmd_after.png);
  bottom: -20px;
  left: -20px;
  z-index: 1;
}

#about .rcmd .rcmd_item_wrap{
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;  
}

#about .rcmd .rcmd_item{
  text-align: center;
  max-width: calc(33.333% - 8px);
  flex-basis: calc(33.333% - 8px);
  position: relative;
  padding-bottom: 44px;
}

#about .rcmd h2 {
  margin-bottom: 30px;
}

#about .rcmd .rcmd_item img{
  margin-bottom: 30px;
}

#about .rcmd .rcmd_item h3{
  margin-bottom: 16px;
}

#about .rcmd .rcmd_item h3{
  margin-bottom: 10px;
  font-size: 24px;
}

#about .rcmd .rcmd_item .rcmd_item_ttl_sub{
  margin-bottom: 20px;
  font-size: 18px;
  color: #f98972;
}

#about .rcmd .rcmd_item .rcmd_item_txt{
  margin-bottom: 30px;
 text-align: left;
 font-size: 16px;
}

#about .rcmd .rcmd_item a {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #a62023;
  color: #fff;
  line-height: 1.5;
  width: 100%;
  padding: 10px;  
}

#about .rcmd .rcmd_item a::after {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
}

@media screen and (max-width:767px) {
  #about .pc_hidden {
    display: inline;
  }
  
  #about .sp_hidden {
    display: none;
  }
  
  /* -- Introduction -- */
  #about .intr {
    position: relative;
    margin-top: 0;
    margin-bottom: 40px;
  }

  /* #about .intr:before {
    position: absolute;
    content: url(../img/about/about_ttl_before.png);
    transform: scale(0.8);
    top: -20px;
    left: -20px;
    z-index: -1;
    opacity: .7;
  }

  #about .intr:after {
    position: absolute;
    content: url(../img/about/about_ttl_after.png);
    transform: scale(0.8);
    bottom: -20px;
    right: -20px;
    z-index: -1;
    opacity: .7;
  } */

  #about .intr h1{
    margin-bottom: 40px;
  }

  #about .intr h1:before{
    transform: scale(0.7);
    top: -32px;
    left: -80px;
    opacity: .8;
  }

  #about .intr h1:after{
    transform: scale(0.7);
    top: -32px;
    right: -84px;
    opacity: .8;
  }

  /* -- Section -- */
  #about .sec {
    margin-bottom: 40px;
  }  

  #about .sec_l .sec_container{
    display: block;
  }    

  #about .sec_l.sec_left .sec_container .sec_txt{
    padding-right: 0;
  }
  
  #about .sec_l.sec_right .sec_container .sec_txt{
    padding-left: 0;
  }  

  /* -- Section > Text > Title(sub) -- */
  #about .sec .sec_ttl_sub{
    margin-top: 25px;
  }

  /* -- Section > Text > Title(main) -- */
  #about .sec h2{
    margin-top: 12px;
    margin-bottom: 20px;
    text-align: left;
  }

  /* Section > Image(sub) */
  #about .sec_l .sec_container .sec_img_sub img{
    margin-top: 20px;
  }

  /* -- Recommended -- */
  #about .rcmd {
    padding-bottom: 20px;
  }

  #about .rcmd:before {
    transform: scale(0.7);
    top: -34px;
    right: -37px;
  }

  #about .rcmd:after {
    transform: scale(0.7);
    bottom: -25px;
    left: -37px;
  }

  #about .rcmd .rcmd_item_wrap{
    display: block;
  }
  
  #about .rcmd .rcmd_item{
    max-width: 100%;
    margin-bottom: 60px;
  }
  
  #about .rcmd h2 {
    /* 要修正 */
    margin-bottom: 30px;
  }
  
  #about .rcmd .rcmd_item img{
    /* 要修正 */
    margin-bottom: 30px;
  }
  
  #about .rcmd .rcmd_item h3{
    /* 要修正 */    
    margin-bottom: 16px;
  }
  
  #about .rcmd .rcmd_item h3{
    /* 要修正 */    
    margin-bottom: 10px;
    font-size: 24px;
  }
  
  #about .rcmd .rcmd_item .rcmd_item_ttl_sub{
    /* 要修正 */    
    margin-bottom: 20px;
    font-size: 18px;
    color: #f98972;
  }
  
  #about .rcmd .rcmd_item .rcmd_item_txt{
    /* 要修正 */    
    margin-bottom: 30px;
   text-align: left;
   font-size: 16px;
  }
  
  #about .rcmd .rcmd_item a {
    /* 要修正 */    
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #a62023;
    color: #fff;
    line-height: 1.5;
    width: 100%;
    padding: 10px;  
  }


}
/* ----------------------------------------------------------------------
  svg画像サイズ
---------------------------------------------------------------------- */
#about .intr h1 img{
  max-width: 100%;
  width: 350.07px;
  height: auto;
}

#sec01 .sec_txt .sec_ttl_sub {
  max-width: 100%;
  width: 262px;
  height: auto;
}

#sec01 .sec_txt h2 img {
  max-width: 100%;
  width: 94.32px;
  height: auto;
}

#sec02 .sec_txt .sec_ttl_sub {
  max-width: 100%;
  width: 322.81px;
  height: auto;
}

#sec02 .sec_txt h2 img {
  max-width: 100%;
  width: 142.08px;
  height: auto;
}

#sec03 .sec_ttl_sub {
  max-width: 100%;
  width: 237.38px;
  height: auto;
}

#sec03 h2 img {
  max-width: 100%;
  width: 248.79px;
  height: auto;
}

.rcmd h2 img {
  max-width: 100%;
  width: 454.88px;
  height: auto; 
}

@media screen and (max-width:767px) {
  #about .intr h1 img{
    width: 245.05px;
  }
  
  #sec01 .sec_txt .sec_ttl_sub {
    width: 183.4px;
  }
  
  #sec01 .sec_txt h2 img {
    width: 66.02px;
  }
  
  #sec02 .sec_txt .sec_ttl_sub {
    width: 232.97px;
  }
  
  #sec02 .sec_txt h2 img {
    width: 99.46px;
  }
  
  #sec03 .sec_ttl_sub {
    width: 166.17px;
  }
  
  #sec03 h2 img {
    width: 174.15px;
  }
  
  .rcmd h2 img {
    width: 318.42px;
  }

}
