@charset "UTF-8";


/*-----------------------------------------------------------------
		ヘッダー「ENTRY」クリック時
-----------------------------------------------------------------*/
.entry {
  width: 100%;
  max-width: 680px;
  height: auto;
  padding: 30px;
  border-radius: 20px;
}

.entry-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.entry-item {
  width: calc(50% - 15px);
}

.item-btn {
  width: 100%;
  text-align: center;
  color: #fff;
  line-height: 48px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: bold;
  display: block;
}

.item-btn + .item-btn {
  margin-top: 15px;
}

.item-btn-01 {
  background: #FBB03B;
}

a.item-btn-02 {
  background: #FEEED5;
  color: #FBB03B;
}

a.item-btn-02none {
  background: #f0f0f0;
  color: #888;
  pointer-events: none;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
.entry {
  width: calc(100% - 30px);
}

.entry-item {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.entry-item + .entry-item {
  margin-top: 30px;
}
}


