@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
*************************************************************/
.linkList {
  margin-top: 100px;
  text-align: center;
}

.linkList ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  flex-wrap: wrap;
}

.linkList li {
  width: 460px;
  height: 350px;
  background: url("/assets/images/about/index/img01.jpg") 0 0;
  background-size: cover;
  border-radius: 15px;
  margin-bottom: 80px;
  color: #fff;
  padding-top: 120px;
}

.linkList li p {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.4;
}

.linkList li p.font-quest {
  font-size: 15px;
  margin-bottom: 30px;
}

.linkList li .btn a.more {
  width: 100px;
  font-family: "Questrial", sans-serif;
  display: block;
  height: 40px;
  border-radius: 100px;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  margin: 0 auto 10px;
  line-height: 40px;
  transition: .2s;
}

.linkList li .btn a.more:hover {
  background-color: #fcc827;
}

.linkList li:nth-child(2) {
  background: url("/assets/images/about/index/img07.png") 0 0;
  background-size: cover;
  padding-top: 80px;
}


.linkList li:nth-child(3) {
  background: url("/assets/images/about/index/img02.jpg") 0 0;
  background-size: cover;
  padding-top: 80px;
}


/************************************************************
SMALL screen
*************************************************************/
@media screen and (max-width: 768px) {
  .content {
    width: 86vw;
    margin: 60px auto 80px;
  }
  .linkList {
    margin-top: 30px;
  }
  .linkList li {
    width: 100%;
    height: 58vw;
    border-radius: 10px;
    margin-bottom: 20px;
    padding-top: 16vw;
  }
  .linkList li p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .linkList li p.font-quest {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .linkList li .btn a {
    font-size: 14px;
    margin: 0 auto;
  }
  .linkList li:nth-child(2) {
    padding-top: 10vw;
  }
  .linkList li:nth-child(3) {
    padding-top: 10vw;
  }
  .linkList li:nth-child(5) {
    padding-top: 10vw;
  }
}

/************************************************************
LARGE screen
*************************************************************/
@media screen and (min-width: 769px) {
  .content {
    width: 1000px;
    margin: 0 auto 120px;
  }
}

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