@charset "UTF-8";
.p-select {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.is-foot .p-select {
  position: absolute;
  bottom: 0;
}
.p-select__content {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 150px;
  cursor: pointer;
  pointer-events: all;
}
@media screen and (min-width: 768px) {
  .p-select__content {
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .is-show .p-select__content {
    transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .p-select__content {
    width: 100%;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    height: 76px;
  }
}
@media (hover: hover) {
  .p-select__content:hover .p-select__content-inner {
    transform: scale(0.98);
  }
}
.p-select__content.is-disable {
  pointer-events: none;
}
.p-select__content-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-origin: right bottom;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-select__content-inner::after {
  content: "";
  width: 23px;
  height: 23px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background: url(../img/top/btn_icon-arrow.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-select__content-inner::after {
    content: none;
  }
}
.is-disable .p-select__content-inner::after {
  content: none;
}
.p-select form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.p-select__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  overflow: hidden;
  border-radius: 100px 0 0 100px;
  background: url(../img/top/btn_bg-pattern_off.gif) repeat 0 0;
  background-size: 59px;
}
@media screen and (max-width: 767px) {
  .p-select__bg {
    background-size: 35px;
    border-radius: 100px 100px 0 0;
  }
}
.p-select__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../img/top/btn_bg-pattern.gif) repeat 0 0;
  background-size: 59px;
}
@media screen and (max-width: 767px) {
  .p-select__bg::before {
    background-size: 35px;
  }
}
.is-disable .p-select__bg::before {
  opacity: 0;
}
.p-select__current {
  position: absolute;
  top: 0;
  left: 54%;
  transform: translateX(-50%) translateY(-37%);
  background-color: #0ea34f;
  padding: 6px;
  width: 45%;
  border-radius: 5px;
}
.is-post-over .p-select__current {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-select__current {
    width: 15%;
    width: 56px;
    padding: 3px;
    left: 50%;
  }
}
.p-select__current-text {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-select__current-text {
    font-size: 40px;
  }
}
.p-select__text {
  position: absolute;
  bottom: 16%;
  left: 54%;
  transform: translateX(-50%);
  width: 51%;
}
.is-post-over .p-select__text {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-select__text {
    bottom: 13%;
    left: 50%;
    width: 75px;
  }
  .p-select__text::before {
    content: "";
    width: 8px;
    height: 100%;
    position: absolute;
    top: 4px;
    right: -32%;
    background: url(../img/top/btn_icon-arrow.svg) no-repeat center center;
    background-size: contain;
  }
}
.is-disable .p-select__text {
  opacity: 0.5;
}
.p-select__fin {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 79%;
  display: none;
}
.is-post-over .p-select__fin {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-select__fin {
    width: 26%;
    left: 50%;
  }
}

.p-textlist {
  margin: 0 auto;
  width: 90%;
  max-width: 1120px;
  margin-top: 30px;
}
.is-post-over .p-textlist {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-textlist {
    width: 100%;
    margin-top: 9px;
  }
}
.p-textlist__notfound {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding: 30px 0 35px;
}
@media screen and (max-width: 767px) {
  .p-textlist__notfound {
    font-size: 14px;
    padding: 20px 0 35px;
  }
}
.p-textlist__search {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  padding-top: 10px;
}
.p-textlist__search-inner {
  margin: 0 auto;
  width: 90%;
  max-width: 425px;
  background-color: #0ea34f;
  padding: 10px 7px;
  border-radius: 100px;
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .p-textlist__search-inner {
    padding: 7px 7px;
    width: 86%;
  }
}
.p-textlist__search-inner input {
  width: 100%;
  display: block;
  box-sizing: border-box;
  border: none;
  height: 70px;
  font-family: YakuHanMP, "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  padding: 0 68px 0 35px;
  font-size: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-textlist__search-inner input {
    height: 53px;
    font-size: 25px;
    padding: 0 50px 0 28px;
  }
}
.p-textlist__search-inner input::-moz-placeholder {
  font-size: 17px;
  transform: translateY(-35%);
}
.p-textlist__search-inner input::placeholder {
  font-size: 17px;
  transform: translateY(-35%);
}
@media screen and (max-width: 767px) {
  .p-textlist__search-inner input::-moz-placeholder {
    transform: translateY(-30%);
    font-size: 13px;
  }
  .p-textlist__search-inner input::placeholder {
    transform: translateY(-30%);
    font-size: 13px;
  }
}
.p-textlist__search-content {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 100px;
  position: relative;
}
.p-textlist__search-content::before {
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 9%;
  transform: translateY(-50%);
  background: url(../img/top/icon_search.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-textlist__search-content::before {
    width: 20px;
    height: 20px;
    right: 8%;
  }
}
.p-textlist__form {
  position: relative;
  margin-top: -49px;
  padding: 79px 40px 40px;
  background-color: #0ea34f;
}
@media screen and (max-width: 767px) {
  .p-textlist__form {
    margin-top: -47px;
    padding: 60px 21px 11px;
  }
}
.p-textlist__form-list {
  display: flex;
  flex-wrap: wrap;
}
.p-textlist__form-list.is-search {
  justify-content: center;
}
.p-textlist__form-list-item {
  width: 18.5%;
  position: relative;
  margin-right: 1.87%;
  margin-bottom: 1.9%;
  cursor: pointer;
}
@media (hover: hover) {
  .p-textlist__form-list-item:hover {
    color: #b62826;
  }
}
@media screen and (max-width: 767px) {
  .p-textlist__form-list-item {
    width: 23%;
    margin-right: 2.65%;
    margin-bottom: 2.9%;
  }
}
.p-textlist__form-list-item.is-select {
  color: #b62826;
  pointer-events: none;
}
.p-textlist__form-list-item.is-select::after {
  opacity: 1;
}
.p-textlist__form-list-item::after {
  content: "";
  width: 100%;
  padding-top: 20%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-54%);
  background: url(../img/top/icon_select.svg) no-repeat center center;
  background-size: contain;
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-textlist__form-list-item::after {
    transform: translateY(-60%);
    padding-top: 25%;
  }
}
@media screen and (min-width: 768px) {
  .p-textlist__form-list-item:nth-child(5n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-textlist__form-list-item:nth-child(4n) {
    margin-right: 0;
  }
}
.p-textlist__form-list-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  font-size: min(150px, 11.5384615385vw);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-textlist__form-list-text {
    font-size: min(60px, 16vw);
  }
}
.p-textlist__form-list-text .p-in_text {
  transform: translate(0%, -6%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-textlist__form-list-text .p-in_text {
    transform: translate(0%, -4%);
  }
}

.p-back {
  margin: 0 auto;
  width: 219px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-back {
    width: 110px;
    margin-top: 21px;
  }
}
.p-back a {
  display: block;
}
@media (hover: hover) {
  .p-back a:hover img {
    transform: scale(0.97);
  }
}
.p-back img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}