@charset "UTF-8";
.color-orange {
  color: #ee7602;
}
.color-yellow {
  color: #fcc827;
}
.color-red {
  color: #D83232;
}
.bg-color-orange {
  background-color: #ee7602;
}
.bg-color-yellow {
  background-color: #fcc827;
}
.bg-color-yellow-light {
  background-color: rgba(255, 238, 186, 0.38);
}
.border-color-orange {
  border-color: #ee7602;
}
.border-color-yellow {
  border-color: #fcc827;
}
/*****************************************
fontアイコンをmixinに登録
*****************************************/
/****************************************
角丸ボタン
デフォルトは背景白、
.round-btn-yellowも追加で背景黄色になる
*****************************************/
@media screen and (max-width: 768px) {
  .round-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 225px;
    height: 45px;
    background-color: white;
    border-radius: 23px;
    font-size: 15px;
    font-weight: 500;
  }
  .round-btn.round-btn-yellow {
    background-color: #fcc827;
  }
}
@media screen and (min-width: 769px) {
  .round-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 70px;
    background-color: white;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color .2s;
  }
  .round-btn.round-btn-yellow {
    background-color: #fcc827;
  }
  .round-btn.round-btn-orange {
    background-color: #ee7602;
  }
  .round-btn.round-btn-orange:hover {
    background-color: #fcc827;
  }
  .round-btn:hover {
    background-color: #ee7602;
  }
}
/****************************************
タイトル
*****************************************/
@media screen and (max-width: 768px) {
  .ttl_bgY {
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 45px;
    background-color: #fcc827;
    font-size: 15px;
  }
}
@media screen and (min-width: 769px) {
  .ttl_bgY {
    width: 100%;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 70px;
    background-color: #fcc827;
  }
}
/****************************************
センタリング
*****************************************/
.center {
  text-align: center;
}
input[type="text"], button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  color: black;
}
input[type='submit'], input[type='button'], label, button, select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
/************************************************************
COMMON screen
*************************************************************/
.section_giraffe {
  width: 100%;
  margin: 25px auto 120px;
  background: url("/assets/images/about/giraffe/pc_bg.jpg") no-repeat top center #F4FCFF;
  background-size: 100%;
  padding: 100px 0;
}
.section_giraffe .pc {
  display: block;
}
.section_giraffe .sp {
  display: none;
}
.section_giraffe .content {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
.section_giraffe .box {
  border-radius: 20px;
  border: 10px solid #FCC827;
  background: #FFF;
  text-align: center;
  padding: 70px 0 40px;
  position: relative;
}
.img_giraffe {
  position: absolute;
  top: 0;
  left: -180px;
  margin: auto;
  width: 1354px;
}
.section_giraffe .box .item {
  margin: 0 auto 40px;
  width: 675px;
}
.section_giraffe .box h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  width: 400px;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  background: #FCC827;
  margin: 0 auto 30px;
}
.section_giraffe .box p {
  line-height: 40px;
}
.section_giraffe .box p span {
  font-weight: 700;
}
.section_giraffe .box .imgArea {
  width: 420px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .section_giraffe {
    margin: 30px auto 0;
    background: url("/assets/images/about/giraffe/sp_bg.jpg") no-repeat top center #F4FCFF;
    background-size: 100%;
    padding: 40px 0 1px;
  }
  .section_giraffe .pc {
    display: none;
  }
  .section_giraffe .sp {
    display: block;
  }
  .section_giraffe .content {
    width: 100%;
    margin: 0 auto;
  }
  .section_giraffe .box {
    border-radius: 10px;
    border: 4px solid #FCC827;
    padding: 10% 5% 0;
    position: relative;
    width: 86vw;
    margin: 0 auto 80px;
    text-align: left;
  }
  .img_giraffe {
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    width: 100%;
  }
  .section_giraffe .box .item {
    margin: 0 auto 40px;
    width: 100%;
  }
  .section_giraffe .box .item.item01 {
    width: 63%;
    margin: 0 auto 40px;
  }
  .section_giraffe .box h2 {
    font-size: 18px;
    font-weight: 700;
    height: 40px;
    line-height: 40px;
    margin: 0 auto 20px;
    text-align: center;
    width: 75%;
  }
  .section_giraffe .box .item.item01 h2 {
    width: 100%;
  }
  .section_giraffe .box p {
    line-height: 30px;
  }
  .section_giraffe .box .imgArea {
    width: 100%;
    margin: 20px auto 0;
  }
}