@charset "UTF-8";

/* 共通
========================================================================== */

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  height: auto;
  overflow-x: hidden;
}

img {
  width: 100%;
}

ul {
  list-style-type: none;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.mb-80 {
  margin-bottom: 80px;
}
.pb-30 {
  padding-bottom: 30px;
}

/* セクション
========================================================================== */

/* セクションごとの調整 */
.section .section-title {
  color: #fff;
  background: #005eab;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0 12px 0 10px;
}
.section .section-title h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding: 16px 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.section .section-title .all-complete {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.section .section-title .number-circle {
  color: #005eab;
  background: #fff;
  display: inline-block;
  border-radius: 3px;
  width: 52px;
  height: auto;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*  すべて完了ボタン  */
.section .section-title label {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  font-size: 14px;
  width: 110px;
  position: relative;
  justify-content: space-around;
}

.section-title input[type="checkbox"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.section-title .checkbox-label-text {
  padding-right: 8px;
}

label,
input[type="checkbox"] {
  cursor: pointer;
}

.section-title input[type="checkbox"] {
  /* padding-left: 30px; */
  vertical-align: middle;
  /* position: relative; */
  width: 100%;
  z-index: 1;
  position: absolute;
}

.section-title input[type="checkbox"]::before,
.section-title input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
}
.section-title input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #fff;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}
.section-title input[type="checkbox"]::after {
  border-bottom: 3px solid #005eab;
  border-left: 3px solid #005eab;
  opacity: 0;
  height: 8px;
  width: 13px;
  transform: rotate(-45deg);
  right: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.section-title input[type="checkbox"]:checked::after {
  opacity: 1;
}

/* チェックリスト */
.check-list ul {
  margin: 0;
  padding: 0;
}

.check-list ul li {
  border-bottom: 1px solid #dfdfdf;
  font-size: 15px;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  line-height: 1.5;
  /* padding: 6px 0; */
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
}

.check-list ul li label {
  flex-grow: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.check-list li .check-list-wrap {
  font-size: 13px;
}

.check-list input[type="checkbox"] {
  display: none;
}

/* チェックアイコン 初期 */
.check-list-wrap {
  position: relative;
}

.check-list-text {
  margin: 0 0 0 16px;
}

.c-checkIcon,
.c-checkedIcon {
  width: 20px;
  margin-right: 8px;
  position: absolute;
  right: 0;
}

.c-checkedIcon {
  opacity: 0;
}

/* チェック時 */
.list-checked .c-checkIcon {
  animation-name: checkIcon;
  animation-timing-function: ease-in-out;
  animation-duration: 1s;
  opacity: 0;
}
@keyframes checkIcon {
  0% {
    opacity: 1;
    transform: scale(1, 1);
  }
  10% {
    opacity: 1;
    transform: scale(1.1, 1.1);
  }
  20% {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }
  30% {
    opacity: 1;
    transform: scale(1.3, 1.3);
  }
  40% {
    opacity: 1;
    transform: scale(1.4, 1.4);
  }
  50% {
    opacity: 1;
    transform: scale(1.5, 1.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.4, 1.4);
  }
  70% {
    opacity: 1;
    transform: scale(1.3, 1.3);
  }
  80% {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }
  90% {
    opacity: 1;
    transform: scale(1.1, 1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1, 1);
  }
}

.list-checked .c-checkedIcon {
  animation-name: changeIcon;
  animation-duration: 1s;
  opacity: 1;
}

@keyframes changeIcon {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* プログレスバー */
.progressbar-container {
  position: relative;
  width: 90%;
  margin: auto;
  height: auto;
}

.progressbar-wrapper {
  position: fixed;
  bottom: 0;
  z-index: 2;
  background: #e0ebf5;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: auto;
  padding: 18px 30px 16px 12px;
  height: 73px;
}

.progressbar-wrapper .progressbar-icon {
  position: absolute;
  left: 60px;
  z-index: 2;
  top: 6px;
}
.progressbar-wrapper .progressbar-icon img {
  width: 20px;
  height: 20px;
}

.progressbar-bar {
  height: 18px;
  margin: 10px auto;
  border-radius: 15px;
  background: #f0f4f7;
  border: 1px solid #f0f4f7;
  transition: width 0.5s ease;
}

.progressbar-heart img {
  position: absolute;
  width: 20px;
  height: 20px;
  display: block;
  top: -10px;
  left: -5px;
  z-index: 1;
}

.progressbar-label {
  font-size: 16px;
  color: #005eab;
  font-weight: bold;
}

.ui-widget-header {
  border: 1px solid #005eab;
  background: #005eab;
}

.ui-progressbar .ui-progressbar-value {
  margin: 0;
}

/* 関連記事を読む */
.other-article {
  width: 90%;
  margin: 20px auto;
}
.other-article .func__accordion {
  border: 2px solid #0a9fc2;
  border-radius: 5px;
}

.other-article .func__accordion .accordion_header.open {
  background: #e5f4f8;
  border-radius: 3px 3px 0 0;
}
.other-article .func__accordion .accordion_header {
  background-color: #fff;
  color: #0a9fc2;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 0 12px 18px;
  transition-duration: 0.2s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
  border-radius: 5px;
}

.other-article .func__accordion .accordion_header .i-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3%;
  width: 26px;
  height: 26px;
  border: 1px solid #0a9fc2;
  border-radius: 100%;
  background: #0a9fc2;
  /* margin-top: -16px; */
  margin: auto;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.other-article .func__accordion .accordion_header .i-circle .inner-icon {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

.other-article .func__accordion .accordion_header .i-circle .inner-icon:before,
.other-article .func__accordion .accordion_header .i-circle .inner-icon:after {
  display: flex;
  content: "";
  background-color: #fff;
  width: 14px;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.other-article .func__accordion .accordion_header .i-circle .inner-icon:before {
  width: 2px;
  height: 14px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.other-article
  .func__accordion
  .accordion_header.open
  .i-circle
  .inner-icon:before {
  content: none;
}
.other-article
  .func__accordion
  .accordion_header.open
  .i-circle
  .inner-icon:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.other-article .func__accordion .accordion_inner {
  display: none;
  padding: 20px 16px;
  box-sizing: border-box;
}
.other-article .func__accordion .accordion_inner ul {
  margin: 0;
  padding: 0;
}
.other-article .func__accordion .accordion_inner .accordion-box {
  font-size: 13px;
}
.other-article .func__accordion .accordion_inner .accordion-box a {
  color: #0a9fc2;
  text-decoration: none;
  line-height: 1.3;
}
.other-article .func__accordion .accordion_inner .accordion-box li + li {
  margin-top: 20px;
}

.other-article .func__accordion .accordion_inner .accordion-box ul li {
  position: relative;
  padding: 0 0 0 16px;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

.other-article .func__accordion .accordion_inner .accordion-box ul li:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 6px solid transparent;
  border-left: 6px solid #0a9fc2;
}
.c-btn {
  box-sizing: border-box;
  padding: 12px 0;
  width: 100%;
  border-radius: 100px;
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  line-height: 1.3;
  background: linear-gradient(to bottom, #f7a060 18%, #e7711b);
}
.c-btn:after {
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: calc(41%);
  right: 15px;
  bottom: 0;
  content: "";
  transform: rotate(45deg);
  right: 25px;
}

/* -------------------------- */
.modal-button {
  width: 30px;
  height: auto;
  display: flex;
  align-items: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}
.modal-container .img {
  background: #f1f1f1;
  margin-bottom: 15px;
}
.modal-container p {
  margin-bottom: 10px;
}
.modal-container p:last-child {
  margin-bottom: 0;
}
.modal-content {
  background: #fff;
  width: 95%;
  max-width: 500px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: show 0.3s linear 0s;
  border-radius: 8px;
}
.modal-top {
  display: inline-block;
}
.modal-close {
  position: absolute;
  display: block;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  color: #060606;
  background: #fff;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-container .modal-heading {
  color: #005eab;
  font-size: 16px;
  font-weight: bold;
  background: #e5f4f8;
  border-radius: 8px 8px 0 0;
  padding: 16px 0;
  text-align: center;
}

.modal-content .modal-inner {
  display: grid;
  grid-template-columns: 1fr 147px;
  /* grid-template-columns: 1fr 140px; */
  padding-top: 20px;
  gap: 10px;
}
.modal-content .modal-inner .modal-textArea {
  text-align: left;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 24px;
}
.modal-content .modal-inner .modal-textArea .contents-title {
  font-size: 20px;
  font-weight: bold;
  color: #005eab;
}
.modal-content .modal-inner .modal-textArea p {
  font-size: 16px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.modal-EntryBtn {
  justify-content: center;
  width: 91%;
  line-height: 45px;
  position: absolute;
  bottom: 4.5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  padding-right: 20px;
  border-radius: 10px;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: #d10042;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.2s;
}
.modal-EntryBtn ::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  height: 14px;
  width: 11px;
  z-index: 1;
  background: url(/resource/top/img/icon_arrow_brackets_white_01.svg) no-repeat
    center;
  background-size: contain;
}
.modal-EntryBtn .modal-EntryBtn__buttonText--bgWhite {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  margin-right: 12px;
  padding: 3px 9px;
  border-radius: 10px;
  background: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 25.5px;
  color: #d10042;
  flex-shrink: 0;
  padding: 0 9px;
}
.modal-EntryBtn .modal-EntryBtn__buttonText {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 45px;
}

#modalStep01 .modal-content .modal-container .modal-inner .modal-image img {
  position: relative;
  bottom: 11px;
}

#modalStep01 .modal-content .modal-inner {
  padding-bottom: 5px;
}
/* -------------------------- */
.step01-EntryBtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px 0 15px;
  height: 50px;
  border-bottom: 1px solid #dfdfdf;
}
.step01-EntryBtn span {
  font-size: 13.5px;
}

.step01-EntryBtn a {
  display: block;
  position: relative;
  padding: 5px 20px 5px 9px;
  font-size: 13.5px;
  text-decoration: none;
  background-color: #fff;
  color: #005eab;
  border: solid 1px #005eab;
  border-radius: 4px;
}
.step01-EntryBtn a::after {
  content: "";
  width: 7px;
  height: 14px;
  position: absolute;
  top: 49.2%;
  transform: translateY(-50%);
  right: 8px;
  background-image: url(/resource/top/img/icon_arrow_brackets_blue_01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (min-width: 374px) {
  .android-br {
    display: none;
  }
}
