@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: 30px auto 80px;
  }
}

.company_association-box h3 {
  text-align: left;
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  .company_association-box h3 {
    padding-left: 20px;
  }
}

.company_association-box .box {
  display: flex;
  margin: 40px 0;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .company_association-box .box {
    margin: 20px 0;
    display: block;
  }
}

.company_association-box .box .imgArea {
  width: 200px;
}

@media screen and (max-width: 768px) {
  .company_association-box .box .imgArea {
    width: 60%;
    margin: 0 auto 20px;
  }
}

.company_association-box .box .imgArea img {
  border-radius: 10px;
}

.company_association-box .box .txtArea {
  margin-left: 40px;
}

@media screen and (max-width: 768px) {
  .company_association-box .box .txtArea {
    margin: 0;
  }
}


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