@charset "UTF-8";
/* CSS Document */

body {
  padding-top: 0;
  --bg-color: #ecf8fd;
  --border-color: #eee;
}

body.modalOpen {
  overflow: hidden;
}

main {
  min-height: 100vh;
  padding: 4.5rem 0 2rem 0;
  background-color: #f2f4f7;
}

#Main--index {
  padding-top: 2rem;
}

.AppHeader {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  min-height: 4rem;
  background: white;
  border-bottom: 1px solid var(--border-color);
}

.AppHeader--index {
  height: 4rem;
}

.AppHeader__btn {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  color: var(--corporate-color);
  font-weight: var(--bold);
  line-height: 1;
}

.AppHeader__btn::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.5rem;
  vertical-align: 0.2rem;
  border-bottom: 0.2rem solid var(--corporate-color);
  border-left: 0.2rem solid var(--corporate-color);
  transform: rotate(45deg);
}

.AppHeader__title {
  width: calc(100% - 4rem);
  margin: 0 auto;
  padding: 2rem 0 1rem 0;
  font-size: 1.6rem;
  font-weight: var(--bold);
  line-height: 1.3;
  text-align: center;
}

.AppHeader__em-title {
  color: var(--corporate-color);
}

/* start_KeyVis */

#KeyVis {
  width: calc(100% - 4rem);
  margin: 0 auto 2rem auto;
  padding: 2rem;
  border-radius: 1rem;
  background-color: white;
}

.KeyVis__title {
  width: 25.6rem;
  margin: 0 auto 2rem auto;
}

.KeyVis__note {
  font-size: 1.4rem;
}

.KeyVis__annotation {
  display: block;
  font-size: 1.1rem;
}

/* end_KeyVis */

/* start_Departure */

#Departure {
  width: calc(100% - 4rem);
  margin: 0 auto 2rem auto;
}

.Departure__title {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: var(--bold);
}

.Departure__items {
  border-radius: 1rem;
  background-color: white;
  border: 1px solid var(--border-color);
}

.Departure__item {
  font-weight: var(--bold);
}

.Departure__item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.Departure__item.open .Departure__parent {
  background-color: #f2f4f7;
}

.Departure__item.open + .Departure__item.open {
  border-top: 1px solid #ddd;
  margin-top: -1px;
}

.Departure__child {
  display: none;
  padding: 1rem;
  box-shadow: 0 0 0 1rem #f2f4f7 inset;
}

.Departure__link {
  position: relative;
  display: block;
  padding: 1.5rem 2rem;
  font-weight: var(--bold);
}

.Departure__link:not(.Departure__parent .Departure__link)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 0.2rem solid var(--corporate-color);
  border-right: 0.2rem solid var(--corporate-color);
  transform: translateY(-50%) rotate(45deg);
}

.Departure__parent-icn {
  display: block;
  position: absolute;
  top: 50%;
  right: 1.3rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background-color: var(--corporate-color);
  transform: translateY(-50%);
}

.Departure__parent-icn::before,
.Departure__parent-icn::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.2rem;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.Departure__parent-icn::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.Departure__item.open .Departure__parent-icn::after {
  transform: translate(-50%, -50%) rotate(0);
}

/* end_Departure */

/* start_SendState */

#SendState {
  margin-bottom: 2rem;
}

.SendState__inner {
  margin-bottom: 0.5rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: white;
}

.SendState__note {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.SendState__em-note {
  color: var(--corporate-color);
  font-weight: var(--bold);
}

#SendState select {
  width: calc(100% - 8rem);
  padding: 1.3rem 1.5rem;
  line-height: 1;
  border-radius: 0.4rem;
  background-color: #f5f6f8;
}

.SendState__button {
  width: 7rem;
  padding: 1.3rem 0;
  color: white;
  font-weight: var(--bold);
  line-height: 1;
  text-align: center;
  border-radius: 0.4rem;
  background-color: var(--corporate-color);
}

.SendState__button[data-state="disabled"] {
  pointer-events: none;
  background-color: #ccc;
}

.SendState__annotation {
  padding: 0 2rem;
  color: #666;
  font-size: 1.2rem;
}

/* end_SendState */

/* start_Modal */

#ModalOverlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}

.modalOpen #ModalOverlay {
  opacity: 1;
  pointer-events: auto;
}

.Modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2;
  opacity: 0;
  width: 75%;
  max-width: 30rem;
  padding-top: 2rem;
  text-align: center;
  border-radius: 1rem;
  background-color: #fcfcfc;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  pointer-events: none;
}

.Modal.active {
  opacity: 1;
  pointer-events: auto;
}

.Modal__title {
  padding: 0 2rem;
  font-weight: var(--bold);
}

.Modal__content {
  padding: 0 2rem;
}

.Modal__btn-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.Modal__btn {
  color: var(--corporate-color);
  width: 50%;
  padding: 1.5rem;
  text-align: center;
}

.Modal__btn--cancel {
  font-weight: var(--bold);
  border-right: 1px solid var(--border-color);
}

/* end_Modal */

/* start_HowToUse */

#HowToUse {
  width: calc(100% - 4rem);
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  border-radius: 1rem;
  background-color: white;
}

.HowToUse__title {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: var(--bold);
  border-bottom: 0.2rem solid var(--corporate-color);
}

.HowToUse__note {
  margin-bottom: 3rem;
  font-size: 1.4rem;
  text-align: center;
}

.HowToUse__item {
  display: flex;
  justify-content: space-between;
  max-width: 375px;
  margin: 0 auto;
}

.HowToUse__item-img {
  width: calc(100% - 16rem);
}

.HowToUse__item-note-wrap {
  width: 14rem;
  font-size: 1.3rem;
}

.HowToUse__item-note-title {
  margin-bottom: 1rem;
}

/* end_HowToUse */

/* start_List */

#List {
  margin-bottom: 0.5rem;
}

.List__item {
  background-color: white;
  border-bottom: 1px solid var(--border-color);
}

.List__item-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}

.List__item-img {
  width: 9rem;
  overflow: hidden;
  border-radius: 0.4rem;
}

.List__item-title-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  width: calc(100% - 10.5rem);
}

.List__item-title-wrap--new::before {
  content: '';
  display: block;
  width: 4.4rem;
  height: 2rem;
  margin-bottom: .5rem;
  background: url(/attending/app/dc/images/top_icn_new.svg) no-repeat center / contain;
}

.List__item-title {
  font-size: 1.4rem;
  font-weight: var(--bold);
  line-height: 1.5;
}

.List__item-btn {
  display: inline-block;
  margin: -3rem 0 0 auto;
  padding: 0.8rem 2rem;
  color: var(--corporate-color);
  font-size: 1.3rem;
  line-height: 1;
  border-radius: 10rem;
  box-shadow: 0px 0px 0px 1px rgba(0, 160, 233, 0.5) inset;
  background-color: var(--bg-color);
}

.List__item-btn--read {
  color: #888;
  background-color: #f5f5f5;
  box-shadow: none;
}

#Pager {
  padding: 0.5rem 0 1rem 0;
}

.Pager__current {
  margin-bottom: 1rem;
  color: #888;
  font-size: 1.2rem;
  text-align: center;
}

.Pager__items {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: 0 auto;
}

.Pager__item {
  width: 48%;
}

.Pager__btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.5rem 1rem;
  color: white;
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  border-radius: 0.3rem;
  background-color: var(--sub-corporate-color);
}

.Pager__btn--disabled {
  background-color: #ccc;
  pointer-events: none;
}

.Pager__item:first-of-type .Pager__btn::before,
.Pager__item:last-of-type .Pager__btn::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  vertical-align: 0.1rem;
  transform: rotate(45deg);
}

.Pager__item:first-of-type .Pager__btn::before {
  margin-right: 0.3rem;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
}

.Pager__item:last-of-type .Pager__btn::after {
  margin-left: 0.3rem;
  border-top: 1px solid white;
  border-right: 1px solid white;
}

/* end_List */

/* start_Contents */

#Contents {
  min-height: calc(100vh - 10.5rem);
  background-color: white;
}

.Contents__title {
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: var(--bold);
  border-bottom: 1px solid var(--border-color);
}

.Contents__item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 2rem;
}

.Contents__item-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 0.2rem solid var(--corporate-color);
  border-right: 0.2rem solid var(--corporate-color);
  transform: translateY(-50%) rotate(45deg);
}

.Contents__item-icn {
  display: block;
  width: 3rem;
  height: 3rem;
  background: url(/attending/app/dc/images/Contents__item-icn.svg) no-repeat
    center / contain;
}

.Contents__item-text {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: calc(100% - 5rem);
  padding: 1rem 4rem 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.Contents__item-title {
  margin-right: 1rem;
  font-weight: var(--bold);
}

.Contents__item-index {
  font-size: 1.3rem;
}

.Return {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.Return__btn {
  padding: 1.5rem 1.3rem 1.5rem 1.5rem;
  color: var(--corporate-color);
  font-size: 1.3rem;
  font-weight: var(--bold);
  line-height: 1;
  border-radius: 0.3rem;
  background-color: white;
  box-shadow: 0px 0px 0px 1px rgb(0 160 233 / 50%) inset;
}

.Return__btn::before {
  content: '';
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.3rem;
  vertical-align: 0.1rem;
  border-top: 0.2rem solid var(--corporate-color);
  border-left: 0.2rem solid var(--corporate-color);
  transform: rotate(-45deg);
}

.noResult {
  width: calc(100% - 4rem);
  margin: 0 auto 2rem auto;
  padding: 2rem 0;
  background-color: white;
  border-radius: 1rem;
  text-align: center;
}

/*.addPoint-btn {
    float: right;
    position: relative;
    margin-top: -4rem;
    margin-right: 2rem;
}
.addPoint-btn:active {
    background-color: #ace7ff;
}*/

/*240926追加　ポイントプレゼント*/
.present_sec {
    background: var(--bg-color);
    border: 1px solid var(--corporate-color);
    border-radius: 1rem;
    margin: 1.5rem 2rem 2rem;
    padding: 1.5rem 2rem;
    position: relative;
}
.present__txt {
    font-size: 1.4rem;
    font-weight: var(--bold);
    line-height: 1.5;
}
.present__txt span {
    color: var(--corporate-color);
}
.present_sec::after {
    content: "";
    display: block;
    background: url(/attending/app/dc/images/illust_cpn.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 5.5rem;
    height: 6rem;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* end_Contents */

