@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
*************************************************************/
.content {
  width: 1000px;
  margin: 50px auto 120px;
}

@media screen and (max-width: 768px) {
  .content {
    width: 86vw;
    margin: 0 auto 80px;
  }
}

.company_activityaction-box .title {
  display: flex;
  background-color: #FFEDB6;
  height: 60px;
  line-height: 60px;
  font-weight: 500;
  border-radius: 60px;
  padding: 0 40px;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .company_activityaction-box .title {
    display: none;
  }
}

.company_activityaction-box .title li:nth-child(1) {
  width: 100px;
}

.company_activityaction-box .title li:nth-child(2) {
  width: 100px;
}

.company_activityaction-box .title li:nth-child(3) {
  width: 320px;
}

.company_activityaction-box .title li:nth-child(4) {
  width: 240px;
}

.company_activityaction-box .box {
  background-color: #F3F3F3;
  padding: 0 35px 35px;
  margin: 0px auto 0;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  .company_activityaction-box .box {
    margin: 30px auto 0;
    padding: 2% 6% 6%;
  }
}

.company_activityaction-box .list {
  margin: auto;
  padding: 0;
}

.company_activityaction-box .list li {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #C4C4C4;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .company_activityaction-box .list li {
    display: flex;
    flex-wrap: wrap;
    padding: 5% 0;
  }
}

@media screen and (max-width: 768px) {
  .company_activityaction-box .list li p {
    margin-bottom: 5px;
  }
}

.company_activityaction-box .list li p:nth-child(1) {
  width: 100px;
}

@media screen and (max-width: 768px) {
  .company_activityaction-box .list li p:nth-child(1) {
    width: 45%;
  }
  .company_activityaction-box .list li p:nth-child(1) span {
    display: inline-block !important;
  }
}

.company_activityaction-box .list li p:nth-child(2) {
  width: 100px;
}

@media screen and (max-width: 768px) {
  .company_activityaction-box .list li p:nth-child(2) {
    width: 45%;
  }
  .company_activityaction-box .list li p:nth-child(2) span {
    display: inline-block !important;
  }
}

.company_activityaction-box .list li p:nth-child(3) {
  width: 320px;
}

@media screen and (max-width: 768px) {
  .company_activityaction-box .list li p:nth-child(3) {
    width: 100%;
  }
}

.company_activityaction-box .list li p:nth-child(4) {
  width: 240px;
}

@media screen and (max-width: 768px) {
  .company_activityaction-box .list li p:nth-child(4) {
    margin-bottom: 0;
    width: 100%;
  }
  .company_activityaction-box .list li p:nth-child(4) span {
    display: inline-block !important;
  }
}

.company_activityaction-box .list li p span {
  display: none;
}

@media screen and (max-width: 768px) {
  .company_activityaction-box .list li p span {
    font-weight: 700;
    display: block;
  }
}

.company_activityaction-box .list li.is-hidden {
  display: none;
  opacity: 0;
  height: 0;
  margin: 0;
}

.company_activityaction-box .more {
  text-align: center;
  margin-top: 20px;
  width: 150px;
  height: 50px;
  line-height: 50px;
  font-family: "Questrial", sans-serif;
  background: #FFFFFF;
  border-radius: 100px;
  margin: 30px auto 0;
  transition: all 0.2s ease 0s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .company_activityaction-box .more {
    margin-top: 20px;
    width: 35%;
    height: 40px;
    line-height: 40px;
  }
}

@media screen and (min-width: 769px) {
  .company_activityaction-box .more:hover {
    background-color: #fcc827;
  }
}

/************************************************************
SMALL screen
*************************************************************/
/************************************************************
LARGE screen
*************************************************************/
/************************************************************
COMMON screen
*************************************************************/
/************************************************************
SMALL screen
*************************************************************/
/************************************************************
LARGE screen
*************************************************************/
