@charset "UTF-8";
html {
  scroll-padding-top: 42px;
}
@media screen and (min-width: 835px) {
  html {
    scroll-padding-top: 160px;
  }
}

/* overview */
.pageov__main {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--mw_s);
  box-sizing: border-box;
  margin-top: 30px;
}
@media screen and (min-width: 835px) {
  .pageov__main {
    margin-top: 70px;
  }
}

.pageov__icon {
  background-color: #fff;
  border-radius: 50%;
  width: 70px;
  padding: 25px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}
@media screen and (min-width: 835px) {
  .pageov__icon {
    width: 140px;
    padding: 30px;
    margin: 0 auto 30px;
  }
}
.pageov__icon img {
  max-width: 100%;
}

.pageov__ttl {
  text-align: center;
  font-size: 2rem;
  font-family: var(--font_point);
}
@media screen and (min-width: 835px) {
  .pageov__ttl {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
}

.pageov__list {
  display: flex;
  width: 100%;
  margin-bottom: 50px;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media screen and (min-width: 835px) {
  .pageov__list {
    margin-bottom: 100px;
  }
}
.pageov__list dt {
  padding: 20px 0 0;
  font-weight: bold;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 835px) {
  .pageov__list dt {
    padding: 30px 10px 30px 0;
    width: 20%;
    border-bottom: 1px solid #dddddd;
  }
}
.pageov__list dd {
  border-bottom: 1px solid #dddddd;
  padding: 10px 0 20px;
  font-weight: 500;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 835px) {
  .pageov__list dd {
    padding: 30px 0;
    width: 80%;
  }
}

.pageov__cont {
  padding: 30px 15px;
  background-color: #f2e5e1;
  display: flex;
  gap: 20px;
  border-radius: var(--border_r_m);
}
@media screen and (min-width: 835px) {
  .pageov__cont {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 834px) {
  .pageov__cont {
    flex-direction: column;
    align-items: center;
  }
}
.pageov__cont img {
  width: 80px;
}
@media screen and (min-width: 835px) {
  .pageov__cont img {
    width: 100px;
  }
}
.pageov__cont .pageov__cont-txt-bl {
  width: 100%;
}
@media screen and (min-width: 835px) {
  .pageov__cont .pageov__cont-txt-bl {
    width: calc(100% - 120px);
  }
}

.pageov__cont-ttl {
  font-family: var(--font_point);
  font-size: 1.4rem;
  margin-bottom: 15px;
}
@media screen and (min-width: 835px) {
  .pageov__cont-ttl {
    margin-bottom: 20px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 480px) {
  .pageov__cont-ttl {
    font-size: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.pageov__cont-ttl .pageov__white-bg {
  background-color: #fff;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 5px;
  padding: 1px 10px;
  margin-right: 5px;
}
@media screen and (min-width: 835px) {
  .pageov__cont-ttl .pageov__white-bg {
    margin-right: 10px;
    padding: 3px 18px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 480px) {
  .pageov__cont-ttl .pageov__white-bg {
    font-size: 1.3rem;
    padding: 1px 6px;
  }
}

.pageov__cont-txt {
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (min-width: 835px) {
  .pageov__cont-txt {
    font-size: 1.6rem;
  }
}

.sp-block {
  display: inline;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .sp-block {
    display: block;
    width: 100%;
  }
}

/* faq */
.pagefaq__link-bl, .pagefaq__cont, .pageprice__link-bl, .pageprice__cont {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--mw_s);
  box-sizing: border-box;
}

.pagefaq__cont {
  margin-bottom: 50px;
}
.pagefaq__cont:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 835px) {
  .pagefaq__cont {
    margin-bottom: 100px;
  }
}

.pagefaq__link, .pageprice__link {
  display: grid;
  flex-wrap: wrap;
  margin-bottom: 60px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 30px;
}
@media screen and (min-width: 1160px) {
  .pagefaq__link, .pageprice__link {
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 100px;
    margin-top: 70px;
  }
}
@media screen and (max-width: 480px) {
  .pagefaq__link, .pageprice__link {
    gap: 10px;
  }
}
.pagefaq__link li, .pageprice__link li {
  border-radius: 50px;
  overflow: hidden;
}
.pagefaq__link li a, .pageprice__link li a {
  font-size: 1.3rem;
  height: 45px;
  background-color: #cce3d7;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 835px) {
  .pagefaq__link li a, .pageprice__link li a {
    font-size: 1.5rem;
    height: 65px;
  }
}
.pagefaq__link li a::after, .pageprice__link li a::after {
  width: 7px;
  height: 5px;
  background-image: url(../img/faq/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
  transition-duration: 0.3s;
  position: absolute;
}
@media screen and (min-width: 835px) {
  .pagefaq__link li a::after, .pageprice__link li a::after {
    width: 11px;
    height: 9px;
    right: 20px;
  }
}
.pagefaq__link li a:hover::after, .pageprice__link li a:hover::after {
  transform: translate(3px, -50%);
  transition-duration: 0.3s;
}
@media screen and (min-width: 835px) {
  .pagefaq__link li a, .pageprice__link li a {
    height: 75px;
    font-size: 1.8rem;
  }
}

.pagefaq__title-main {
  font-size: 2.1rem;
  font-family: var(--font_point);
  text-align: center;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
@media screen and (min-width: 835px) {
  .pagefaq__title-main {
    font-size: 2.6rem;
    margin-bottom: 40px;
  }
}

.faq__bl {
  margin-bottom: 15px;
}
@media screen and (min-width: 835px) {
  .faq__bl {
    margin-bottom: 30px;
  }
}

.faq__bl dt {
  padding: 20px 45px;
  cursor: pointer;
  background-color: #f2e5e1;
  position: relative;
  border-radius: 23px;
  font-weight: 500;
  font-family: var(--font_point);
  font-size: 1.6rem;
}
.faq__bl dt::before {
  content: "Q.";
  font-family: var(--font_point_en);
  font-size: 2rem;
  left: 20px;
  top: 15px;
  position: absolute;
}
@media screen and (min-width: 835px) {
  .faq__bl dt::before {
    font-size: 2.4rem;
    left: 35px;
    top: 22px;
  }
}
.faq__bl dt::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(-45deg) translateY(-50%);
  transition-duration: 0.5s;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
}
@media screen and (min-width: 835px) {
  .faq__bl dt::after {
    right: 40px;
  }
}
@media screen and (min-width: 835px) {
  .faq__bl dt {
    padding: 30px 80px 30px 70px;
    font-size: 1.8rem;
  }
}

.faq__bl.is-open dt::after {
  transform: rotate(135deg) translateY(50%);
  transition-duration: 0.5s;
}

.faq__bl dd {
  padding: 20px 45px;
  background-color: #fff;
  display: none;
  border-radius: 0 0 23px 23px;
  position: relative;
  font-size: 1.4rem;
}
.faq__bl dd::before {
  content: "A.";
  font-family: var(--font_point_en);
  font-size: 2rem;
  position: absolute;
  left: 20px;
  top: 15px;
  position: absolute;
  color: #d96eae;
}
@media screen and (min-width: 835px) {
  .faq__bl dd::before {
    font-size: 2.4rem;
    left: 35px;
    top: 22px;
  }
}
@media screen and (min-width: 835px) {
  .faq__bl dd {
    padding: 30px 30px 30px 70px;
    font-size: 1.5rem;
  }
}
.faq__bl dd a {
  color: #d96eae;
  text-decoration: underline;
}

.faq__bl.is-open dt {
  border-radius: 23px 23px 0 0;
}

.faq__bl.is-open dd {
  display: block;
}

/* price */
.pageprice__cont {
  margin-bottom: 50px;
}
.pageprice__cont:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 835px) {
  .pageprice__cont {
    margin-bottom: 100px;
  }
}

.pageprice__title-main {
  background-color: #f2e5e1;
  font-family: var(--font_point);
  text-align: center;
  margin-bottom: 10px;
  box-sizing: border-box;
  padding: 15px;
  font-size: 2rem;
  border-radius: 8px;
}
@media screen and (min-width: 835px) {
  .pageprice__title-main {
    font-size: 3rem;
    padding: 30px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
  }
}

.pageprice__tax {
  text-align: right;
  margin-bottom: 10px;
  box-sizing: border-box;
  font-size: 1.4rem;
}
@media screen and (min-width: 835px) {
  .pageprice__tax {
    padding-right: 20px;
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}

.pageprice__white-bl {
  box-sizing: border-box;
  padding: 30px 15px;
  background-color: #fff;
  border-radius: 12px;
}
@media screen and (min-width: 835px) {
  .pageprice__white-bl {
    border-radius: 30px;
    padding: 50px 40px;
  }
}

.pageprice__item:not(:last-of-type) {
  margin-bottom: 40px;
}
@media screen and (min-width: 835px) {
  .pageprice__item:not(:last-of-type) {
    margin-bottom: 70px;
  }
}

.pageprice__list .pageprice__title-small {
  position: relative;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 835px) {
  .pageprice__list .pageprice__title-small {
    font-size: 1.8rem;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.6rem;
  }
}
.pageprice__list > li {
  position: relative;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (min-width: 835px) {
  .pageprice__list > li {
    width: calc(100% - 100px);
  }
}
.pageprice__list > li:not(:first-of-type) {
  border-top: 1px solid #dddddd;
  padding-top: 30px;
  margin-top: 30px;
}
@media screen and (min-width: 835px) {
  .pageprice__list > li:not(:first-of-type) .pageprice__title-small {
    top: 30px;
  }
}

.pageprice__title-middle {
  display: flex;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 10px;
  margin-bottom: 15px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.pageprice__title-middle span {
  display: block;
  width: fit-content;
}
.pageprice__title-middle .big {
  color: #d96eae;
  font-size: 2.1rem;
  font-family: var(--font_point);
}
@media screen and (min-width: 835px) {
  .pageprice__title-middle .big {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .pageprice__title-middle .big {
    font-size: 1.8rem;
  }
}
.pageprice__title-middle .small {
  font-size: 1.2rem;
  text-align: right;
  display: block;
  margin-left: auto;
}
@media screen and (min-width: 835px) {
  .pageprice__title-middle .small {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 835px) {
  .pageprice__title-middle {
    margin-bottom: 30px;
  }
}

.pageprice__list-small {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.pageprice__list-small li {
  display: flex;
  align-items: center;
}
.pageprice__list-small li .label-txt {
  min-width: 100px;
  width: fit-content;
  font-size: 1.2rem;
  text-align: center;
  padding: 3px 10px;
  background-color: #f8f7f5;
  font-family: 500;
}
@media screen and (min-width: 835px) {
  .pageprice__list-small li .label-txt {
    font-size: 1.4rem;
    min-width: 140px;
  }
}
.pageprice__list-small li .price {
  width: 90px;
  font-family: var(--font_point);
  font-size: 1.4rem;
  text-align: right;
}
@media screen and (min-width: 835px) {
  .pageprice__list-small li .price {
    font-size: 2rem;
    width: 160px;
  }
}
.pageprice__list-small li .price .yen {
  font-size: 60%;
  font-family: var(--font_point);
}

/* news */
.btn_more.return {
  width: 200px;
  margin: 40px auto;
}
@media screen and (min-width: 835px) {
  .btn_more.return {
    width: 280px;
    margin: 60px auto;
  }
}
.btn_more.return .sl_txt > span {
  padding-left: 65px;
}
@media screen and (min-width: 835px) {
  .btn_more.return .sl_txt > span {
    padding-left: 90px;
  }
}

.postpage__wrapper {
  box-sizing: border-box;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--mw_s);
}
@media screen and (min-width: 835px) {
  .postpage__wrapper {
    margin-top: 70px;
  }
}
.postpage__wrapper * {
  box-sizing: border-box;
}

.postpage__column2-flex {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 835px) {
  .postpage__column2-flex {
    flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .postpage__column2-flex {
    gap: 70px;
  }
}

.postpage__main-cont {
  width: 100%;
}
@media screen and (min-width: 835px) {
  .postpage__main-cont {
    width: calc(100% - 290px);
  }
}
@media screen and (min-width: 1200px) {
  .postpage__main-cont {
    width: calc(100% - 390px);
  }
}

#sidebar {
  width: 100%;
}
@media screen and (min-width: 835px) {
  #sidebar {
    width: 250px;
  }
}
@media screen and (min-width: 1200px) {
  #sidebar {
    width: 320px;
  }
}

.news__list li a {
  display: flex;
  border-bottom: 1px solid #dddddd;
  padding: 17px 0;
  gap: 13px;
  align-items: center;
  transition-duration: 0.5s;
  position: relative;
}
.news__list li a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  transition-duration: 0.3s;
  display: block;
  content: "";
  height: 1px;
  background-color: var(--color_middle);
}
.news__list li a:hover::before {
  width: 100%;
  transition-duration: 0.3s;
}
@media screen and (min-width: 835px) {
  .news__list li a {
    padding: 25px 0;
    gap: 20px;
  }
}

.news__list-img {
  width: 80px;
  aspect-ratio: 1/1;
}
.news__list-img picture {
  width: 100%;
  height: 100%;
  display: block;
}
.news__list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 835px) {
  .news__list-img {
    width: 130px;
  }
}

.news__list-bl {
  width: calc(100% - 100px);
}

.news__time {
  font-size: 1.3rem;
  font-family: var(--font_point_en);
  margin-right: 8px;
  display: inline-block;
  color: #999999;
}
@media screen and (min-width: 835px) {
  .news__time {
    font-size: 1.6rem;
    margin-right: 20px;
  }
}

.news__cate {
  font-size: 1.1rem;
  font-family: var(--font_point_en);
  margin-right: 10px;
  display: inline-block;
  color: #fff;
  background-color: var(--color_point_10);
  border-radius: 50px;
  padding: 2px 12px 0px;
}
@media screen and (min-width: 835px) {
  .news__cate {
    font-size: 1.3rem;
  }
}

.news__list-time {
  margin-bottom: 5px;
}
@media screen and (min-width: 835px) {
  .news__list-time {
    margin-bottom: 10px;
  }
}

.news__list-title {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (min-width: 835px) {
  .news__list-title {
    font-size: 1.8rem;
  }
}

.sidebar-block {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  margin-bottom: 20px;
}
@media screen and (min-width: 835px) {
  .sidebar-block {
    margin-bottom: 40px;
    padding: 30px;
  }
}

.sidebar-block__heading {
  font-size: 2.1rem;
  font-family: var(--font_point);
}
@media screen and (min-width: 835px) {
  .sidebar-block__heading {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .sidebar-block__heading {
    font-size: 2.6rem;
  }
}

.category-list li {
  margin-bottom: 8px;
}
.category-list li a {
  color: var(--color_base);
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (min-width: 835px) {
  .category-list li a {
    font-size: 1.6rem;
  }
}

.ddownbtn.is-open + .sidebar-block__content {
  margin-top: 20px;
}

.list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.list-tags li a {
  display: inline-block;
  font-size: 1.5rem;
  background-color: #f1efeb;
  border-radius: 30px;
  padding: 2px 12px 0;
}

.postpage__title-bl {
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (min-width: 835px) {
  .postpage__title-bl {
    gap: 10px 20px;
    margin-bottom: 40px;
  }
}

.postpage__time {
  font-family: var(--font_point_en);
  color: #999999;
  font-size: 1.3rem;
  width: fit-content;
}
@media screen and (min-width: 835px) {
  .postpage__time {
    font-size: 1.6rem;
  }
}

.postpage__cate {
  width: fit-content;
  height: fit-content;
  font-size: 1.1rem;
  font-family: var(--font_point_en);
  color: #fff;
  background-color: var(--color_point_10);
  border-radius: 30px;
  padding: 4px 15px 2px;
}
@media screen and (min-width: 835px) {
  .postpage__cate {
    font-size: 1.3rem;
    padding: 2px 10px 0px;
  }
}

.postpage__title {
  font-weight: bold;
  font-size: 2rem;
  padding-bottom: 12px;
  border-bottom: 1px solid #dddddd;
  width: 100%;
}
@media screen and (min-width: 835px) {
  .postpage__title {
    font-size: 2.4rem;
    padding-bottom: 15px;
  }
}

.postpage__thumb {
  margin-bottom: 30px;
}
.postpage__thumb img {
  width: 100% !important;
}
@media screen and (min-width: 835px) {
  .postpage__thumb {
    margin-bottom: 40px;
  }
}

.postpage__cont #toc_container {
  background: #fff;
  border-radius: 30px;
  border: none;
  padding: 30px 20px;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 835px) {
  .postpage__cont #toc_container {
    padding: 30px;
    margin-bottom: 40px;
  }
}
.postpage__cont #toc_container p.toc_title {
  font-family: var(--font_point);
  font-size: 1.8rem;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 7px;
}
@media screen and (min-width: 835px) {
  .postpage__cont #toc_container p.toc_title {
    font-size: 2rem;
  }
}
.postpage__cont .toc_number {
  color: #999999;
}
.postpage__cont .toc_number::after {
  content: ".";
}
.postpage__cont .toc_list li a {
  font-size: 1.4rem;
  font-family: var(--font_point);
}
@media screen and (min-width: 835px) {
  .postpage__cont .toc_list li a {
    font-size: 1.5rem;
  }
}
.postpage__cont p {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 30px;
}
.postpage__cont h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  background-color: #f2e5e1;
  padding: 15px 22px;
  font-family: var(--font_point);
  margin-top: 1.8em;
}
@media screen and (min-width: 835px) {
  .postpage__cont h1 {
    font-size: 2.2rem;
  }
}
.postpage__cont h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 15px 22px;
  font-family: var(--font_point);
  margin-top: 1.8em;
}
@media screen and (min-width: 835px) {
  .postpage__cont h2 {
    font-size: 2.2rem;
  }
}
.postpage__cont h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color_point_09);
  font-family: var(--font_point);
  margin-top: 1.8em;
}
@media screen and (min-width: 835px) {
  .postpage__cont h3 {
    font-size: 2.2rem;
  }
}
.postpage__cont h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #999;
  font-family: var(--font_point);
  margin-top: 1.8em;
}
@media screen and (min-width: 835px) {
  .postpage__cont h4 {
    font-size: 2.2rem;
  }
}
.postpage__cont h5 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-family: var(--font_point);
  margin-top: 1.8em;
}
.postpage__cont h5::before {
  content: "●";
  color: #c4dfe1;
  display: inline-block;
  margin-right: 1rem;
}
@media screen and (min-width: 835px) {
  .postpage__cont h5 {
    font-size: 2.2rem;
  }
}
.postpage__cont h6 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-family: var(--font_point);
  margin-top: 1.8em;
  border-left: 1px solid #999;
  padding-left: 15px;
}
@media screen and (min-width: 835px) {
  .postpage__cont h6 {
    font-size: 2.2rem;
  }
}
.postpage__cont img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  display: block;
}

.postpage__return {
  width: 200px;
  padding: 17px 30px 17px 17px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font_point);
  font-size: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  margin-top: 30px;
}
@media screen and (min-width: 835px) {
  .postpage__return {
    margin-top: 60px;
    font-size: 1.8rem;
    width: 280px;
  }
}
.postpage__return::after {
  position: absolute;
  width: 11px;
  height: 9px;
  background-image: url(../img/faq/arrow.svg);
  top: 50%;
  right: 10px;
  content: "";
  display: block;
  transform: translate(0, -50%);
  transition-duration: 0.5s;
}
.postpage__return::before {
  width: 100%;
  height: 1px;
  background-color: var(--color_base);
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  transform: scale(1, 1);
  transform-origin: center top;
  transition-duration: 0.5s;
  position: absolute;
}
.postpage__return:hover::after {
  transform: translate(3px, -50%);
  transition-duration: 0.5s;
}

.campaign__list {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 640px) {
  .campaign__list {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}
.campaign__list li a {
  width: 100%;
  height: auto;
  display: block;
}
.campaign__list li a .img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
}
.campaign__list li a picture {
  width: 100%;
  height: 100%;
  display: block;
}
.campaign__list li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition-duration: 0.5s;
}
.campaign__list li a .cont {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 0 0 30px 30px;
}
@media screen and (min-width: 1200px) {
  .campaign__list li a .cont {
    padding: 25px;
  }
}
.campaign__list li a:hover img {
  transform: scale(1.1, 1.1);
  transition-duration: 0.5s;
}

.campaign__list-title {
  font-size: 1.8rem;
  font-family: var(--font_point);
  margin-bottom: 15px;
}

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

.campaign__list-price {
  align-items: center;
  line-height: 1.2;
}
.campaign__list-price .tag {
  font-size: 1.4rem;
  color: var(--color_point_09);
  font-family: var(--font_point_en);
  display: block;
}
.campaign__list-price .price {
  font-size: 2.6rem;
  color: var(--color_point_09);
  font-family: var(--font_point_en);
  display: block;
  letter-spacing: 0;
}
@media screen and (min-width: 1200px) {
  .campaign__list-price .price {
    font-size: 3.2rem;
  }
}
.campaign__list-price .price .yen {
  font-size: 2rem;
}
.campaign__list-price .price .plus {
  font-size: 1.5rem;
}
.campaign__list-price .price .tax {
  font-size: 1.4rem;
}

.campaign__list-new {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #f8e9f2;
  font-family: var(--font_point_en);
  color: var(--color_dark);
  line-height: 1;
  width: 40px;
  height: 40px;
  font-size: 1rem;
}
@media screen and (min-width: 1200px) {
  .campaign__list-new {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
}

/* access */
.pageac__main-bl {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--mw_s);
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
.pageac__main-bl * {
  box-sizing: border-box;
}
@media screen and (min-width: 835px) {
  .pageac__main-bl {
    margin-top: 70px;
  }
}

.pageac__main-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex-direction: column-reverse;
}
@media screen and (min-width: 835px) {
  .pageac__main-flex {
    gap: 40px;
    flex-direction: row;
  }
}
.pageac__main-flex img {
  object-fit: cover;
  width: 400px;
  max-width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
@media screen and (min-width: 835px) {
  .pageac__main-flex img {
    margin: 0;
    width: calc(50% - 40px);
  }
}

.pageac__main-cont {
  width: 100%;
}
@media screen and (min-width: 835px) {
  .pageac__main-cont {
    width: 50%;
  }
}

.pageac__main-ttl {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 0;
  margin-bottom: 20px;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .pageac__main-ttl {
    gap: 20px;
  }
}

.pageac__main-ttl-logo {
  width: 120px;
}
@media screen and (min-width: 1200px) {
  .pageac__main-ttl-logo {
    width: 155px;
  }
}
.pageac__main-ttl-logo img {
  width: 100%;
}

.pageac__main-ttl-txt {
  font-family: var(--font_point_en);
  font-size: 2rem;
}
@media screen and (min-width: 835px) {
  .pageac__main-ttl-txt {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .pageac__main-ttl-txt {
    font-size: 3.6rem;
  }
}
.pageac__main-ttl-txt .small {
  display: block;
  font-size: 1.4rem;
}
@media screen and (min-width: 835px) {
  .pageac__main-ttl-txt .small {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .pageac__main-ttl-txt .small {
    font-size: 2rem;
  }
}

.pageac__main-txt {
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  gap: 10px 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media screen and (min-width: 835px) {
  .pageac__main-txt {
    font-size: 1.8rem;
  }
}

.pageac__map-link {
  margin-top: auto;
  height: fit-content;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color_point_09);
}
.pageac__map-link .map-icon {
  width: 14px;
  height: 19px;
  display: inline-block;
  margin-right: 5px;
  transform: translateY(3px);
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/access/map.svg);
}
.pageac__map-link .txt {
  border-bottom: 1px solid var(--color_point_09);
}

.pageac__main-list {
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pageac__main-list dt {
  padding: 2px 10px;
  background-color: #e4e1db;
  width: 100px;
  margin-bottom: 8px;
  text-align: center;
}
.pageac__main-list dd {
  padding: 2px 10px;
  width: 100%;
  margin-bottom: 8px;
}
@media screen and (min-width: 835px) {
  .pageac__main-list dd {
    width: calc(100% - 100px);
  }
}

.pageac__btn {
  width: 360px;
  max-width: 100%;
  margin-bottom: 10px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 30px;
  height: 60px;
}
.pageac__btn.pageac__btn-tel {
  background-color: #d8ede5;
  font-family: var(--font_point_en);
  font-size: 2.4rem;
}
.pageac__btn.pageac__btn-mail {
  font-family: var(--font_point);
  font-size: 2rem;
  background-color: #f2e5e1;
}
.pageac__btn .tel-icon {
  width: 25px;
  height: 25px;
  position: absolute;
  display: block;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/access/phone.svg);
}
.pageac__btn .mail-icon {
  width: 25px;
  height: 19px;
  position: absolute;
  display: block;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/access/mail.svg);
}

.pageac__img-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}
@media screen and (min-width: 835px) {
  .pageac__img-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 70px;
  }
}
.pageac__img-list li {
  border-radius: 30px;
  overflow: hidden;
}
.pageac__img-list li img {
  width: 100%;
  height: auto;
}
.pageac__img-list li:last-of-type {
  display: none;
}
@media screen and (min-width: 835px) {
  .pageac__img-list li:last-of-type {
    display: block;
  }
}

.pageac__access {
  background-color: #f8f7f5;
  padding: 60px 0 40px;
}
@media screen and (min-width: 835px) {
  .pageac__access {
    padding: 120px 0;
  }
}

.pageac__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--mw_s);
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.pageac__access-ttl {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  gap: 10px;
  font-family: var(--font_point_en);
  margin-bottom: 30px;
  align-items: center;
}
.pageac__access-ttl img {
  width: 45px;
}
.pageac__access-ttl img.icon-train {
  width: 40px;
}
@media screen and (min-width: 835px) {
  .pageac__access-ttl img {
    width: 64px;
  }
  .pageac__access-ttl img.icon-train {
    width: 57px;
  }
}
.pageac__access-ttl .txt {
  font-size: 1.9rem;
}
@media screen and (min-width: 835px) {
  .pageac__access-ttl .txt {
    font-size: 2.4rem;
    margin-right: 10px;
  }
}
.pageac__access-ttl .tag {
  padding: 2px 8px 4px;
  background-color: #cce3d7;
  display: block;
  font-size: 1.4rem;
}
@media screen and (min-width: 835px) {
  .pageac__access-ttl .tag {
    padding: 2px 20px 4px;
    font-size: 1.8rem;
  }
}

.pageac__access-ttl-middle {
  color: var(--color_point_09);
  font-family: var(--font_point);
  font-size: 1.7rem;
  margin-bottom: 15px;
}
@media screen and (min-width: 835px) {
  .pageac__access-ttl-middle {
    font-size: 2rem;
    margin-bottom: 25px;
  }
}

.pageac__list li {
  font-size: 1.6rem;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (min-width: 835px) {
  .pageac__list li {
    margin-bottom: 60px;
  }
}
.pageac__list li::after {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  left: 30px;
  bottom: -26px;
  background-image: url(../img/access/access-arrow.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 835px) {
  .pageac__list li::after {
    bottom: -40px;
  }
}
.pageac__list li:last-of-type {
  margin-bottom: 0;
}
.pageac__list li:last-of-type::after {
  display: none;
}

.pageac__train-list {
  display: flex;
  flex-wrap: wrap;
}
.pageac__train-list li {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 835px) {
  .pageac__train-list li {
    width: 50%;
  }
}
.pageac__train-list li .txt {
  font-size: 1.6rem;
}

.pageac__train-ttl {
  font-family: var(--font_point);
  font-size: 1.7rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 835px) {
  .pageac__train-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.pageac__train-ttl::before {
  content: "●";
  color: var(--color_point_09);
  display: inline-block;
  margin-right: 0.8rem;
}

.pageac__train-ttl-small {
  font-size: 1.6rem;
  font-weight: bold;
}

.pageac__map {
  width: calc(100% + 60px);
  margin-left: -30px;
  margin-bottom: -60px;
  height: 300px;
}
@media screen and (min-width: 835px) {
  .pageac__map {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-bottom: -140px;
    height: 600px;
  }
}
.pageac__map iframe {
  width: 100%;
  height: 100%;
}

.mt-ttl-top {
  margin-top: 40px;
}
@media screen and (min-width: 835px) {
  .mt-ttl-top {
    margin-top: 70px;
  }
}

/* privacy */
.privacy__title {
  font-size: 1.7rem;
  margin-bottom: 30px;
  text-align: center;
  background-color: #f2e5e1;
  border-radius: 10px;
  padding: 10px;
  font-family: var(--font_point);
}
@media screen and (min-width: 400px) {
  .privacy__title {
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 835px) {
  .privacy__title {
    font-size: 2.2rem;
  }
}

.pageprivacy__main {
  margin-top: 30px;
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 835px) {
  .pageprivacy__main {
    margin-top: 70px;
  }
}
.pageprivacy__main p {
  font-size: 1.4rem;
  margin-bottom: 30px;
}
@media screen and (min-width: 835px) {
  .pageprivacy__main p {
    font-size: 1.5rem;
  }
}

.privacy__title-middle {
  font-family: var(--font_point);
  font-size: 1.6rem;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 15px;
  padding-bottom: 8px;
}
@media screen and (min-width: 835px) {
  .privacy__title-middle {
    font-size: 1.8rem;
  }
}

.mb0 {
  margin-bottom: 0 !important;
}

.privacy__list {
  font-size: 1.4rem;
  margin-bottom: 30px;
}
@media screen and (min-width: 835px) {
  .privacy__list {
    font-size: 1.5rem;
  }
}
.privacy__list li {
  position: relative;
  text-indent: -0.7em;
  padding-left: 1.5em;
}
.privacy__list li::before {
  content: "●";
  color: #f3afd6;
  display: inline-block;
  margin-right: 0.5em;
  font-size: 80%;
}

.mb20 {
  margin-bottom: 20px !important;
}

.privacy__link {
  text-align: center;
  font-size: 1.6rem;
}
.privacy__link a {
  color: #f78da7;
  display: inline-block;
  margin-right: 3px;
  border-bottom: 1px solid #f78da7;
}

/* flow */
.pageflow__bl {
  margin-top: 30px;
  margin-bottom: 60px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--mw_s);
}
@media screen and (min-width: 835px) {
  .pageflow__bl {
    margin-top: 70px;
    margin-bottom: 120px;
  }
}

.pageflow__title-bl {
  margin-bottom: 40px;
}
@media screen and (min-width: 835px) {
  .pageflow__title-bl {
    margin-bottom: 90px;
  }
}

.pageflow__title-middle {
  text-align: center;
  font-family: var(--font_point);
  font-size: 2.4rem;
  margin-bottom: 30px;
}
@media screen and (min-width: 835px) {
  .pageflow__title-middle {
    font-size: 3.6rem;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 640px) {
  .pageflow__title-middle {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.pageflow__title-small {
  font-size: 1.6rem;
  text-align: center;
  font-family: var(--font_point);
  margin-bottom: 50px;
}
@media screen and (min-width: 835px) {
  .pageflow__title-small {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .pageflow__title-small {
    font-size: 1.5rem;
    text-align: left;
  }
}

.under640-none {
  display: none;
}
@media screen and (min-width: 640px) {
  .under640-none {
    display: inline-block;
  }
}

.under834-none {
  display: none;
}
@media screen and (min-width: 835px) {
  .under834-none {
    display: inline-block;
  }
}

.under834-only {
  display: inline-block;
}
@media screen and (min-width: 835px) {
  .under834-only {
    display: none;
  }
}

.pageflow__list {
  box-sizing: border-box;
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 835px) {
  .pageflow__list {
    width: 100%;
  }
}
.pageflow__list li {
  padding: 35px 25px;
  border-radius: 30px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  background-color: #fff;
  margin-bottom: 80px;
}
.pageflow__list li:last-of-type {
  margin-bottom: 0;
}
.pageflow__list li:last-of-type::after {
  display: none;
}
@media screen and (min-width: 835px) {
  .pageflow__list li {
    grid-template-columns: 1fr 1fr;
    padding: 50px;
    gap: 30px;
  }
}
.pageflow__list li .pageflow__num {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-image: url(../img/flow/circle.webp);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: var(--font_point_en);
  font-size: 1.6rem;
  left: 0;
  top: 0;
  transform: translate(-15%, -30%);
}
@media screen and (min-width: 1300px) {
  .pageflow__list li .pageflow__num {
    width: 100px;
    height: 100px;
    font-size: 1.9rem;
    left: 0;
    top: 0;
    transform: translate(-22%, -32%);
  }
}
@media screen and (min-width: 1300px) {
  .pageflow__list li .pageflow__num {
    font-size: 2.4rem;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -42%);
  }
}
.pageflow__list li img {
  border-radius: 25px;
  width: 100%;
}
.pageflow__list li .txt {
  font-size: 1.5rem;
}
@media screen and (min-width: 835px) {
  .pageflow__list li .txt {
    font-size: 1.6rem;
  }
}
.pageflow__list li .txt a {
  text-decoration: underline;
  color: #e0bdb9;
}
@media screen and (min-width: 835px) {
  .pageflow__list li .txt a:hover {
    text-decoration: none;
  }
}
.pageflow__list li::after {
  width: 40px;
  height: 22px;
  background-image: url(../img/flow/flow-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  left: 50%;
  bottom: -53px;
  position: absolute;
  content: "";
  display: block;
}
@media screen and (min-width: 835px) {
  .pageflow__list li::after {
    margin-bottom: -3px;
    width: 70px;
    height: 36px;
  }
}

.pageflow__list-title {
  border-radius: 50px;
  background-color: #e0bdb9;
  font-size: 1.8rem;
  font-family: var(--font_point);
  color: #fff;
  margin-bottom: 13px;
  width: fit-content;
  padding: 1px 15px 2px;
}
@media screen and (min-width: 835px) {
  .pageflow__list-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 400px) {
  .pageflow__list-title {
    font-size: 1.65rem;
  }
}

.pageflow__minor {
  box-sizing: border-box;
  padding-top: 60px;
  padding-bottom: 70px;
  margin-bottom: -70px;
  background-color: #f5eeeb;
  position: relative;
  width: calc(100% + 40px);
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: -20px;
}
@media screen and (min-width: 835px) {
  .pageflow__minor {
    padding-top: 100px;
    padding-bottom: 140px;
    margin-bottom: -140px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: -30px;
  }
}

.pageflow__minor-title {
  font-size: 2.1rem;
  font-family: var(--font_point);
  text-align: center;
  background-color: #e0bdb9;
  border-radius: 30px 30px 0 0;
  padding: 15px 10px;
  color: #fff;
}
@media screen and (min-width: 835px) {
  .pageflow__minor-title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 400px) {
  .pageflow__minor-title {
    font-size: 1.9rem;
    padding: 10px;
  }
}

.pageflow__minor-bl {
  border-radius: 30px;
  background-color: #fff;
  padding-bottom: 35px;
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  box-sizing: border-box;
}
.pageflow__minor-bl * {
  box-sizing: border-box;
}
@media screen and (min-width: 835px) {
  .pageflow__minor-bl {
    padding-bottom: 50px;
  }
}

.pageflow__minor-list {
  width: 650px;
  max-width: 90%;
  margin: 30px auto 0;
  box-sizing: border-box;
  padding-left: 1.5em;
}
@media screen and (min-width: 835px) {
  .pageflow__minor-list {
    margin: 40px auto 0;
  }
}
.pageflow__minor-list li {
  margin-bottom: 20px;
}
@media screen and (min-width: 835px) {
  .pageflow__minor-list li {
    margin-bottom: 40px;
  }
}
.pageflow__minor-list li .txt {
  font-size: 1.4rem;
}
@media screen and (min-width: 835px) {
  .pageflow__minor-list li .txt {
    font-size: 1.6rem;
  }
}

.pageflow__minor-title-middle {
  position: relative;
  font-family: var(--font_point);
  font-size: 1.6rem;
  margin-bottom: 5px;
}
@media screen and (min-width: 835px) {
  .pageflow__minor-title-middle {
    font-size: 1.8rem;
  }
}
.pageflow__minor-title-middle::before {
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: url(../img/flow/list-before.webp);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  top: 10px;
  left: -25px;
}

.pageflow__minor-caution {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 30px;
  width: 820px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e0bdb9;
  padding: 40px 20px;
}
@media screen and (min-width: 835px) {
  .pageflow__minor-caution {
    padding: 50px;
  }
}

.pageflow__minor-caution-title {
  border-top: 1px solid #efdedc;
  border-bottom: 1px solid #efdedc;
  font-family: var(--font_point);
  font-size: 1.7rem;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 835px) {
  .pageflow__minor-caution-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.pageflow__minor-caution-list {
  width: 550px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 835px) {
  .pageflow__minor-caution-list {
    margin-bottom: 30px;
  }
}
.pageflow__minor-caution-list li {
  padding-left: 1em;
  text-indent: -0.5em;
  font-size: 1.4rem;
}
.pageflow__minor-caution-list li::before {
  content: "・";
  display: inline-block;
  margin-right: 0.3em;
}

.pageflow__minor-caution-txt {
  font-size: 1.4rem;
  text-align: left;
  font-family: var(--font_point);
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (min-width: 835px) {
  .pageflow__minor-caution-txt {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 40px;
  }
}

.download-btn {
  display: flex;
  width: 280px;
  max-width: 100%;
  height: 50px;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  background-color: #e0bdb9;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
}
.download-btn::after {
  content: "";
  width: 11px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/flow/btn-arrow-white.webp);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
}

.pageflow__float-en {
  font-size: 9vw;
  font-family: var(--font_point_en);
  color: #f1ece5;
  writing-mode: horizontal-tb;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  z-index: -1;
  top: -30px;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (min-width: 1400px) {
  .pageflow__float-en {
    font-size: 13rem;
    right: -136px;
    font-size: 18rem;
    font-family: var(--font_point_en);
    color: #f1ece5;
    writing-mode: vertical-rl;
    position: absolute;
    right: -260px;
    top: -30px;
    white-space: nowrap;
    line-height: 1;
  }
}
@media screen and (min-width: 1400px) {
  .pageflow__float-en {
    font-size: 13rem;
    right: -70px;
  }
}
@media screen and (min-width: 1600px) {
  .pageflow__float-en {
    right: -157px;
    font-size: 18rem;
  }
}
@media screen and (max-width: 400px) {
  .pageflow__float-en {
    font-size: 9.5vw;
    top: -20px;
  }
}

/* about page */
.pageabout .breadcrumb {
  margin-left: 30px;
}

.pageabout .under_title {
  padding-left: 30px;
}

.pageabout .under_title picture img {
  background-image: url(../img/about/about-bg.jpg);
}

.pageabout__main {
  margin-top: 30px !important;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 835px) {
  .pageabout__main {
    margin-top: 70px !important;
    padding-bottom: 130px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.pageabout__main-flex {
  display: block;
  gap: 30px;
}
@media screen and (min-width: 835px) {
  .pageabout__main-flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
}
.pageabout__main-flex img {
  width: 180px;
  max-width: 38%;
  margin-bottom: 20px;
}
@media screen and (min-width: 835px) {
  .pageabout__main-flex img {
    width: 35%;
    margin-bottom: 0;
  }
}
.pageabout__main-flex .cont {
  width: 100%;
}
@media screen and (min-width: 835px) {
  .pageabout__main-flex .cont {
    width: calc(50% - 15px);
  }
}
.pageabout__main-flex .cont .txt {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
@media screen and (min-width: 835px) {
  .pageabout__main-flex .cont .txt {
    font-size: 1.6rem;
  }
}

.pageabout__main-ttl {
  font-size: 2.4rem;
  font-family: var(--font_point);
  color: #6d6477;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .pageabout__main-ttl {
    font-size: 3.2rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 400px) {
  .pageabout__main-ttl {
    font-size: 2.1rem;
  }
}

.pageabout__menu {
  border-radius: 0 30px 0 0;
  background-image: url(../img/about/about-bg.webp);
  padding: 50px 20px;
  position: relative;
}
@media screen and (min-width: 835px) {
  .pageabout__menu {
    padding: 120px 30px;
    border-radius: 0 100px 0 0;
  }
}

@media screen and (min-width: 835px) {
  .pageabout__menu-ttl-bl {
    margin-bottom: 70px;
  }
}

.pageabout__menu-ttl {
  font-family: var(--font_point);
  font-size: 2.1rem;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 400px) {
  .pageabout__menu-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 835px) {
  .pageabout__menu-ttl {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
}

.pageabout__menu-ttl-small {
  font-family: var(--font_point);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 835px) {
  .pageabout__menu-ttl-small {
    font-size: 2.4rem;
  }
}

.pageabout__menu-ttl-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 520px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 835px) {
  .pageabout__menu-ttl-list {
    margin-bottom: 70px;
    gap: 20px;
  }
}
.pageabout__menu-ttl-list li {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: var(--font_point);
  font-size: 1.8rem;
}
@media screen and (min-width: 835px) {
  .pageabout__menu-ttl-list li {
    font-size: 2.4rem;
    height: 65px;
  }
}
.pageabout__menu-ttl-list li:first-of-type {
  background-color: #f0c9b9;
}
.pageabout__menu-ttl-list li:last-of-type {
  background-color: #b9dadc;
}

.pageabout__menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 20px;
  margin-bottom: 40px;
  width: 450px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 835px) {
  .pageabout__menu-list {
    margin-bottom: 50px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
    gap: 30px;
  }
}
.pageabout__menu-list li img {
  width: 100%;
  margin-bottom: 10px;
}

.pageabout__menu-name {
  text-align: center;
  font-family: var(--font_point);
  font-size: 1.4rem;
}
@media screen and (min-width: 835px) {
  .pageabout__menu-name {
    font-size: 1.6rem;
  }
}

.pageabout__menu-fb-list {
  border-radius: 30px;
  padding: 30px 20px 0;
  display: flex;
  background-color: #fff;
  flex-direction: column;
  width: 450px;
  max-width: 100%;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 835px) {
  .pageabout__menu-fb-list {
    border-radius: 45px;
    flex-direction: row;
    padding: 45px 45px 0;
    width: 100%;
    flex-direction: row;
  }
}
.pageabout__menu-fb-list li {
  width: 100%;
  padding-bottom: 40px;
}
@media screen and (min-width: 835px) {
  .pageabout__menu-fb-list li {
    width: 50%;
  }
}
.pageabout__menu-fb-list li:first-of-type {
  padding-bottom: 0;
}
@media screen and (min-width: 835px) {
  .pageabout__menu-fb-list li:first-of-type {
    padding-right: 40px;
  }
}
.pageabout__menu-fb-list li:last-of-type {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 20px;
  border-left: none;
  padding-left: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 835px) {
  .pageabout__menu-fb-list li:last-of-type {
    border-left: 1px solid #ddd;
    padding-left: 40px;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
}

.pageabout__menu-fb-ttl {
  color: var(--color_point_09);
  font-family: var(--font_point_en);
  font-size: 2.8rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  line-height: 1;
}
@media screen and (min-width: 835px) {
  .pageabout__menu-fb-ttl {
    border-radius: 45px;
    font-size: 4.8rem;
    margin-bottom: 20px;
  }
}

.pageabout__menu-fb-flex {
  display: flex;
  justify-content: space-between;
}
.pageabout__menu-fb-flex .img {
  width: 40%;
  margin-left: 3%;
}
@media screen and (min-width: 835px) {
  .pageabout__menu-fb-flex .img {
    margin-left: 8%;
  }
}
.pageabout__menu-fb-flex .img.body img {
  width: 57%;
  margin-left: 19%;
}
.pageabout__menu-fb-flex .img.face img {
  width: 100%;
}
.pageabout__menu-fb-flex .pageabout__menu-fb-list-small {
  width: 50%;
  flex-direction: column;
  align-items: center;
  display: flex;
  border-left: none !important;
}
.pageabout__menu-fb-flex .pageabout__menu-fb-list-small li {
  margin-bottom: 20px;
  padding: 0;
  width: 140px;
  border-top: none !important;
  margin-top: 0 !important;
  background-color: #f8f7f5;
  border-radius: 50px;
  border: 1px solid #ddd;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 10px;
  width: 140px;
}
@media screen and (max-width: 400px) {
  .pageabout__menu-fb-flex .pageabout__menu-fb-list-small li {
    margin-bottom: 17px;
  }
}

.pageabout__promise {
  padding: 60px 20px;
}
@media screen and (min-width: 835px) {
  .pageabout__promise {
    padding: 80px 30px;
  }
}

.pageabout__flex {
  display: flex;
  flex-direction: column;
  width: 450px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 835px) {
  .pageabout__flex {
    flex-direction: row;
    width: 100%;
  }
}
.pageabout__flex .cont {
  position: relative;
}
@media screen and (min-width: 835px) {
  .pageabout__flex .cont {
    width: calc(92% - 367px);
    margin-right: 3%;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__flex .cont {
    width: calc(92% - 410px);
    height: 945px;
  }
}
@media screen and (min-width: 835px) {
  .pageabout__flex .cont::before {
    width: 90%;
    height: 70%;
    display: block;
    content: "";
    background-color: #f2e5e1;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: -1;
    opacity: 0.5;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__flex .cont::before {
    width: 70%;
  }
}
@media screen and (min-width: 835px) {
  .pageabout__flex .list {
    border-radius: 45px;
    font-size: 4.8rem;
    margin-bottom: 20px;
    width: 367px;
    height: 800px;
    margin-right: 2%;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__flex .list {
    width: 410px;
    height: 950px;
    margin-right: 5%;
  }
}

.pageabout__list {
  display: flex;
  justify-content: space-between;
  gap: 20px 4%;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media screen and (min-width: 835px) {
  .pageabout__list {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 0;
  }
}
@media screen and (min-width: 835px) {
  .pageabout__list::before {
    content: "";
    width: 800px;
    height: auto;
    aspect-ratio: 1/1;
    display: block;
    position: absolute;
    left: 100px;
    top: 0;
    border-radius: 50%;
    border: 1px solid #d4e7eb;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__list::before {
    width: 945px;
  }
}
.pageabout__list li {
  position: relative;
  width: 48%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/about/promise-circle.webp);
}
@media screen and (min-width: 835px) {
  .pageabout__list li {
    position: absolute;
    width: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__list li {
    width: 194px;
  }
}
.pageabout__list li:first-of-type {
  top: 0;
  left: 0;
}
@media screen and (min-width: 835px) {
  .pageabout__list li:first-of-type {
    top: 0;
    left: 197px;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__list li:first-of-type {
    top: 0;
    left: 197px;
  }
}
.pageabout__list li:nth-of-type(2) {
  top: 0;
  left: 0;
}
@media screen and (min-width: 835px) {
  .pageabout__list li:nth-of-type(2) {
    top: 118px;
    left: 67px;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__list li:nth-of-type(2) {
    top: 155px;
    left: 49px;
  }
}
.pageabout__list li:nth-of-type(3) {
  top: 0;
  left: 0;
}
@media screen and (min-width: 835px) {
  .pageabout__list li:nth-of-type(3) {
    top: 294px;
    left: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__list li:nth-of-type(3) {
    top: 366px;
    left: 0px;
  }
}
.pageabout__list li:nth-of-type(4) {
  top: 0;
  left: 0;
}
@media screen and (min-width: 835px) {
  .pageabout__list li:nth-of-type(4) {
    top: 478px;
    left: 49px;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__list li:nth-of-type(4) {
    top: 582px;
    left: 49px;
  }
}
.pageabout__list li:nth-of-type(5) {
  top: 0;
  left: 0;
}
@media screen and (min-width: 835px) {
  .pageabout__list li:nth-of-type(5) {
    top: 632px;
    left: 155px;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__list li:nth-of-type(5) {
    top: 750px;
    left: 197px;
  }
}
.pageabout__list li .txt {
  color: #666666;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 400px) {
  .pageabout__list li .txt {
    font-size: 1.3rem;
  }
}

.pageabout__list-ttl {
  color: #8abca7;
  font-size: 2rem;
  font-family: var(--font_point);
  margin-bottom: 7px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .pageabout__list-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__list-ttl {
    font-size: 3.2rem;
    font-family: var(--font_point);
    margin-bottom: 20px;
  }
}

.pageabout__float-ttl {
  width: 80%;
}
@media screen and (min-width: 835px) {
  .pageabout__float-ttl {
    width: 80%;
    transform: translateX(5%);
    margin-bottom: 40px;
  }
}
.pageabout__float-ttl img {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .cont-bl {
    width: fit-content;
    transform: translateX(-5%);
    width: 230px;
  }
}
@media screen and (min-width: 1200px) {
  .cont-bl {
    width: 355px;
  }
}
.cont-bl .txt {
  font-size: 1.6rem;
}

.pageabout__promise-ttl {
  font-family: var(--font_point);
  margin-bottom: 10px;
  margin-top: 20px;
  color: #6d6477;
  font-size: 2.1rem;
}
@media screen and (min-width: 835px) {
  .pageabout__promise-ttl {
    margin-bottom: 25px;
    margin-top: 0;
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__promise-ttl {
    font-size: 3.2rem;
  }
}

.pageabout__flow {
  padding: 40px 20px 80px;
}
@media screen and (min-width: 835px) {
  .pageabout__flow {
    padding: 50px 30px 140px;
  }
}

.pageabout__flow-ttl-bl {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 40px;
  font-family: var(--font_point);
}
@media screen and (min-width: 835px) {
  .pageabout__flow-ttl-bl {
    gap: 25px;
  }
}

.pageabout__flow-ttl-en {
  font-size: 4rem;
  line-height: 1;
  font-family: var(--font_point_en);
}
@media screen and (min-width: 835px) {
  .pageabout__flow-ttl-en {
    font-size: 6rem;
  }
}

.pageabout__flow-ttl {
  font-size: 1.4rem;
}

.pageabout__flow-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
}
@media screen and (min-width: 835px) {
  .pageabout__flow-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
  }
}
.pageabout__flow-list li {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 835px) {
  .pageabout__flow-list li {
    border-radius: 30px;
  }
}
.pageabout__flow-list li .img {
  border-radius: 30px 30px 0 0;
  aspect-ratio: 3/2;
}
.pageabout__flow-list li .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: 50% 50%;
}
.pageabout__flow-list li .cont {
  padding: 10px;
  border-radius: 0 0 30px 30px;
  background-color: #fff;
  height: 100%;
}
@media screen and (min-width: 835px) {
  .pageabout__flow-list li .cont {
    padding: 15px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__flow-list li .cont {
    padding: 25px;
    font-size: 2.4rem;
  }
}
.pageabout__flow-list li .cont .txt {
  font-size: 1.5rem;
}

.pageabout__flow-list-tag {
  background-color: #d8ede5;
  padding: 7px 13px;
  font-family: var(--font_point_en);
  font-size: 1.4rem;
  line-height: 1;
  width: fit-content;
  margin-bottom: 8px;
}
@media screen and (min-width: 835px) {
  .pageabout__flow-list-tag {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__flow-list-tag {
    margin-bottom: 15px;
  }
}

.pageabout__flow-list-ttl {
  font-size: 1.7rem;
  margin-bottom: 8px;
  font-family: var(--font_point);
}
@media screen and (min-width: 835px) {
  .pageabout__flow-list-ttl {
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__flow-list-ttl {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}

.pageabout__app {
  padding: 0 20px 60px;
}
@media screen and (min-width: 835px) {
  .pageabout__app {
    padding: 0 30px 180px;
  }
}
.pageabout__app .w1100 {
  position: relative;
}
.pageabout__app .w1100::after {
  width: 205px;
  aspect-ratio: 1/5.5;
  background-image: url(../img/about/approach-txt.webp);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  right: -270px;
  top: 0;
  content: "";
  display: block;
}
@media screen and (max-width: 1700px) {
  .pageabout__app .w1100::after {
    width: 122px;
    right: -135px;
  }
}
@media screen and (max-width: 1400px) {
  .pageabout__app .w1100::after {
    width: 144px;
    right: 0;
    transform: rotate(-90deg) translate(312%, -40%);
  }
}
@media screen and (max-width: 834px) {
  .pageabout__app .w1100::after {
    width: 60px;
  }
}
@media screen and (max-width: 400px) {
  .pageabout__app .w1100::after {
    width: 51px;
  }
}

.pageabout__app-img {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 835px) {
  .pageabout__app-img {
    margin-bottom: 50px;
  }
}
.pageabout__app-img img {
  width: 100%;
  display: block;
  transform: translateX(0);
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 835px) {
  .pageabout__app-img img {
    border-radius: 45px;
  }
}
@media screen and (min-width: 1400px) {
  .pageabout__app-img img {
    width: 120%;
    display: block;
    transform: translateX(-19%);
    border-radius: 45px;
  }
}

.pageabout__app-ttl-bl {
  margin-bottom: 30px;
}
@media screen and (min-width: 835px) {
  .pageabout__app-ttl-bl {
    display: flex;
    margin-bottom: 50px;
  }
}

.pageabout__app-ttl {
  font-family: var(--font_point);
  color: #6d6477;
  font-size: 2.1rem;
  margin-bottom: 20px;
}
@media screen and (min-width: 835px) {
  .pageabout__app-ttl {
    font-size: 2.6rem;
    width: 50%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .pageabout__app-ttl {
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 835px) {
  .pageabout__app-txt {
    width: 50%;
    padding: 15px 30px 0 20px;
  }
}

.pageabout__app-list {
  display: grid;
  gap: 30px 20px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 450px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 835px) {
  .pageabout__app-list {
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
  }
}
.pageabout__app-list li img {
  margin-bottom: 10px;
  width: 100%;
}

.pageabout__app-list-txt {
  font-size: 1.4rem;
  font-family: var(--font_point);
  text-align: center;
}
@media screen and (min-width: 835px) {
  .pageabout__app-list-txt {
    font-size: 1.6rem;
  }
}

main:has(.pageabout) {
  padding-left: 0;
  padding-right: 0;
}

.pageabout__why {
  border-radius: 0 30px 0 0;
  background-color: #f5eeeb;
  padding: 60px 20px;
  margin-bottom: -70px;
  overflow: hidden;
}
@media screen and (min-width: 835px) {
  .pageabout__why {
    padding: 120px 30px;
    border-radius: 0 100px 0 0;
    margin-bottom: -140px;
  }
}
.pageabout__why .w1100 {
  position: relative;
}
.pageabout__why .w1100::after {
  font-size: 200px;
  opacity: 0.5;
  color: #fff;
  font-family: var(--font_point_en);
  line-height: 1;
  content: "WHY CHOOSE US";
  position: absolute;
  left: -270px;
  top: -50px;
  display: block;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (max-width: 1700px) {
  .pageabout__why .w1100::after {
    font-size: 133px;
    left: -148px;
  }
}
@media screen and (max-width: 1400px) {
  .pageabout__why .w1100::after {
    font-size: 110px;
    left: 0;
    transform: rotate(-90deg) translate(466%, 38%);
  }
}
@media screen and (max-width: 1200px) {
  .pageabout__why .w1100::after {
    font-size: 81px;
    transform: rotate(-90deg) translate(489%, 38%);
    padding: 0;
  }
}
@media screen and (max-width: 834px) {
  .pageabout__why .w1100::after {
    font-size: 61px;
    transform: rotate(-90deg) translate(418%, 38%);
  }
}
@media screen and (max-width: 640px) {
  .pageabout__why .w1100::after {
    font-size: 39px;
    transform: rotate(-90deg) translate(426%, 38%);
  }
}

.pageabout__why-ttl {
  text-align: center;
  font-family: var(--font_point);
  font-size: 2.1rem;
  margin-bottom: 30px;
  color: #6d6477;
}
@media screen and (min-width: 835px) {
  .pageabout__why-ttl {
    font-size: 3.2rem;
    margin-bottom: 100px;
  }
}

.pageabout__why-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 500px) {
  .pageabout__why-list {
    grid-template-columns: 1fr 1fr;
  }
}
.pageabout__why-list li {
  border-radius: 20px;
  background-color: #fff;
  padding: 20px;
  position: relative;
}
@media screen and (min-width: 835px) {
  .pageabout__why-list li {
    border-radius: 45px;
    padding: 45px;
  }
}
.pageabout__why-list li::after {
  width: 76px;
  height: 81px;
  background-image: url(../img/about/why01.svg);
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 0;
}
@media screen and (min-width: 835px) {
  .pageabout__why-list li::after {
    top: 45px;
    right: 45px;
    width: 169px;
    height: 188px;
  }
}
.pageabout__why-list li:nth-of-type(2)::after {
  background-image: url(../img/about/why02.svg);
  width: 91px;
  height: 84px;
}
@media screen and (min-width: 835px) {
  .pageabout__why-list li:nth-of-type(2)::after {
    width: 199px;
    height: 174px;
  }
}
.pageabout__why-list li:nth-of-type(3)::after {
  background-image: url(../img/about/why03.svg);
  width: 82px;
  height: 70px;
}
@media screen and (min-width: 835px) {
  .pageabout__why-list li:nth-of-type(3)::after {
    width: 176px;
    height: 155px;
  }
}
.pageabout__why-list li:nth-of-type(4)::after {
  background-image: url(../img/about/why04.svg);
  width: 70px;
  height: 88px;
}
@media screen and (min-width: 835px) {
  .pageabout__why-list li:nth-of-type(4)::after {
    width: 146px;
    height: 202px;
  }
}
.pageabout__why-list li .num {
  height: 43px;
  width: auto;
  margin-bottom: 10px;
}
@media screen and (min-width: 835px) {
  .pageabout__why-list li .num {
    height: 117px;
    margin-bottom: 20px;
  }
}
.pageabout__why-list li .num img {
  height: 100%;
  width: auto;
}
.pageabout__why-list li .txt {
  font-size: 1.4rem;
}
@media screen and (min-width: 835px) {
  .pageabout__why-list li .txt {
    font-size: 1.6rem;
  }
}

.pageabout__why-list-ttl {
  font-family: var(--font_point);
  font-size: 1.9rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 835px) {
  .pageabout__why-list-ttl {
    font-size: 2.7rem;
    margin-bottom: 30px;
  }
}
.pageabout__why-list-ttl .small {
  font-size: 1.4rem;
  display: block;
}
@media screen and (min-width: 835px) {
  .pageabout__why-list-ttl .small {
    font-size: 1.8rem;
  }
}
.pageabout__why-list-ttl .pink-txt {
  color: var(--color_point_09);
}

.pageabout__bnr {
  display: block;
  margin-top: var(--pad_m);
}
@media screen and (min-width: 835px) {
  .pageabout__bnr {
    margin-top: var(--pad_ll);
  }
}
.pageabout__bnr img {
  width: 100%;
}

/* contact page */
.contact__main {
  padding-bottom: 150px;
}

.w800 {
  width: 800px;
  max-width: 90%;
  margin: 0 auto;
}

.w1100 {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.w1100 * {
  box-sizing: border-box;
}

.contact__title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact__title-en {
  text-align: center;
  font-family: var(--en);
  font-size: 12px;
  margin-bottom: 60px;
}

.contact__step {
  width: 364px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.contact__step::before {
  background-color: #e0e0e0;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 45px;
  display: block;
  content: "";
}
.contact__step li {
  width: 90px;
  position: relative;
  z-index: 1;
}
.contact__step li .num {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: #e0e0e0;
  border: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 600;
  font-family: var(--en);
  background-color: #fff;
}
.contact__step li .txt {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-top: 3px;
  color: #e0e0e0;
  display: block;
}
.contact__step li.active .num {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}
.contact__step li.active .txt {
  color: #000;
}

.contact__main-bl {
  margin-top: 70px;
  margin-bottom: 40px;
}
.contact__main-bl .txt {
  font-size: 16px;
  text-align: left;
  line-height: 1.8;
  width: 900px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contact__main-title {
  text-align: center;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: var(--font_point);
}

.contact__btn-bl {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact__tel-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 100px;
  border-radius: 100px;
  background: #f2e5e1;
  margin: 0 auto 80px;
}
.contact__tel-btn .small {
  font-weight: bold;
}
.contact__tel-btn .big {
  font-size: 3rem;
  font-family: var(--font_point);
}
.contact__tel-btn .big .icon-phone {
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/access/phone.svg);
}

.contact__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 300px;
  max-width: 100%;
  height: 85px;
  border-radius: 100px;
  background: #333333;
  font-size: 24px;
  font-weight: bold;
}
.contact__btn .small {
  font-size: 16px;
}
.contact__btn.pink {
  background-color: #eab0d3;
  width: 240px;
  height: 75px;
  font-size: 21px;
}
.contact__btn.pink.contact__btn-thanks {
  width: 320px;
  margin: 0 auto 80px;
}

.line-bnr {
  width: 960px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.line-bnr img {
  width: 100%;
}

.mt40 {
  margin-top: 40px !important;
}

.center-btn {
  margin: 0 auto;
}

.contact__list li {
  margin-bottom: 50px;
  display: flex;
}

.contact__list-title {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  width: 260px;
  position: relative;
  height: fit-content;
}
.contact__list-title .float {
  position: absolute;
  left: 0;
  bottom: -2.5rem;
  font-weight: 400;
}

.contact__list-input-bl > p {
  display: flex;
  gap: 20px 12px;
  width: 100%;
  flex-wrap: wrap;
}
.contact__list-input-bl > p br {
  display: none;
}

.contact__white-bl {
  background-color: #fff;
  border-radius: 30px;
  padding: 50px 100px;
}

.contact__list-date {
  width: calc(100% - 260px);
  gap: 20px;
  display: grid;
}

.date-item {
  gap: 20px 10px;
  display: flex;
  flex-wrap: wrap;
}

.date-item > p {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  height: 100%;
}

.select-bl * {
  width: 100%;
  height: 100%;
}

#month1, #month2, #date1, #date2 {
  width: 80px;
  height: 50px;
  background: #f8f7f5;
  padding: 18px;
}

.input-all, #tel {
  padding: 18px;
  font-size: 16px;
  width: 100%;
  background: #f8f7f5;
}

.input-harf {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 18px;
  font-size: 16px;
}

.conatct__caution-txt {
  font-size: 1.6rem;
  text-align: right;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
  margin-bottom: 50px;
}

.caution {
  font-size: 13px;
  color: #fff;
  height: fit-content;
  line-height: 1;
  color: var(--color_point_09);
}

.nini {
  font-size: 13px;
  color: #fff;
  height: fit-content;
  border-radius: 3px;
  line-height: 1;
  padding: 5px 8px;
  background-color: #9c9c9c;
}

.wpcf7-form-control-wrap:has(.input-all) {
  width: 100%;
}

.wpcf7-form-control-wrap:has(.input-farf) {
  width: calc(50% - 10px);
}

.radio .wpcf7-list-item.first {
  margin: 0 1em 0 0;
  width: 195px;
}

.radio .wpcf7-list-item {
  margin: 0 1em 0 0;
}

.wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}

/* デフォルトのボタン */
input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}

.wpcf7-list-item-label {
  align-items: center;
}

/* チェック前のボタン */
.wpcf7-list-item-label::before {
  background: #f8f7f5;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 20px;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  transition: background-color 0.5s; /* 色をじんわり変化させる */
  width: 20px;
}

/* チェック後のボタン */
input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #000; /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 5px #f8f7f5; /* 中心の色のスタイル */
}

.privacy-check .wpcf7-form-control-wrap, .entry-check .wpcf7-form-control-wrap {
  display: block;
}
.privacy-check span.wpcf7-list-item, .entry-check span.wpcf7-list-item {
  margin: 0 30px 0 0; /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}
.privacy-check .wpcf7-list-item-label, .entry-check .wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
  font-size: 16px; /* 項目のフォントサイズ */
}
.privacy-check input[type=checkbox], .entry-check input[type=checkbox] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}
.privacy-check .wpcf7-list-item-label::before, .entry-check .wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  content: "";
  display: inline-block;
  height: 20px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 20px;
  border-radius: 2px;
}
.privacy-check input[type=checkbox]:checked + .wpcf7-list-item-label::after, .entry-check input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background-size: contain;
  content: "";
  height: 12px;
  left: 7px;
  position: absolute;
  top: 2px;
  width: 5px;
  transform: rotate(45deg);
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.privacy-check input[type=checkbox]:checked + .wpcf7-list-item-label::before, .entry-check input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #ddd;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  position: absolute;
  white-space: nowrap;
}

.wpcf7-form-control-wrap:has(.privacy-check) {
  margin: 30px auto 0;
  display: block;
  width: fit-content;
}

/* セレクトボックス */
.select-bl {
  position: relative;
  width: 265px;
  height: 50px;
  background: #f8f7f5;
  border-radius: 0;
}
.select-bl::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  right: 20px;
  pointer-events: none;
}
.select-bl::after .wpcf7-form-control-wrap {
  width: 100%;
  height: 100%;
}
.select-bl .wpcf7-form-control {
  appearance: none;
  -webkit-appearance: none; /*Google Chrome/Safari対応*/
  -moz-appearance: none; /*Firefox対応*/
  -o-appearance: none; /*Opera対応*/
  padding: 12px;
}

.select-style {
  padding: 18px;
  font-size: 16px;
  width: 100%;
  height: 68.8px;
}

.wpcf7-form-control-wrap:has(.select-style) {
  display: block;
  height: 68.8px;
}

/* 日付 */
.date-bl {
  width: calc(50% - 10px);
}
.date-bl .wpcf7-form-control-wrap {
  width: 100%;
}
.date-bl .wpcf7-form-control {
  background: #fff;
  position: relative;
  width: 100%;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #ccc;
}
.date-bl .wpcf7-form-control::-webkit-calendar-picker-indicator {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.date-bl .wpcf7-form-control::after {
  content: "";
  display: block;
  width: 20px;
  height: 21px;
  background-image: url(../img/common/calender.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 18px;
  right: 20px;
  pointer-events: none;
}
.date-bl .wpcf7-form-control.is-empty {
  color: #757575;
}

/* プライバシーポリシー */
.privacy__main-title {
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.privacy__slide-bl {
  border: 5px solid #eeeeee;
  border-radius: 5px;
  height: 370px;
  overflow-y: scroll;
  padding: 50px 40px 20px;
}

.privacy__slide-bl::-webkit-scrollbar {
  width: 20px;
}

.privacy__slide-bl::-webkit-scrollbar-track {
  background-color: transparent;
}

.privacy__slide-bl::-webkit-scrollbar-thumb {
  background-color: #7e7e7e;
  border-radius: 50px;
  border: 6.5px solid transparent;
  background-clip: content-box;
}

.privacy__txt {
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.7;
  text-align: left;
}

.privacy__middle-title {
  font-size: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dddddd;
  text-align: left;
}

.form-control {
  font-size: 16px;
}

.contact__list-input-bl {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: calc(100% - 260px);
}

.contact__list-input-bl:has(input[type=radio]) {
  padding-top: 17px;
}

.contact__salon-link {
  color: #2586c4;
  font-size: 14px;
  display: inline-block;
  border-bottom: 1px solid #2586c4;
}

.caution-txt {
  font-size: 12px;
  margin-top: 5px;
  font-weight: bold;
  text-align: left;
}

textarea {
  resize: none;
}

.wpcf7-form-control-wrap:has(.sei) {
  position: relative;
  margin-bottom: 25px;
}
.wpcf7-form-control-wrap:has(.sei)::after {
  position: absolute;
  bottom: -25px;
  content: "姓";
  display: block;
  left: 0;
  color: #999999;
  font-size: 14px;
  z-index: 2;
}

.wpcf7-form-control-wrap:has(.mei) {
  position: relative;
  margin-bottom: 25px;
}
.wpcf7-form-control-wrap:has(.mei)::after {
  position: absolute;
  bottom: -25px;
  content: "名";
  display: block;
  left: 0;
  color: #999999;
  font-size: 14px;
  z-index: 2;
}

.wpcf7-form-control-wrap:has(.sei-kana) {
  position: relative;
  margin-bottom: 25px;
}
.wpcf7-form-control-wrap:has(.sei-kana)::after {
  position: absolute;
  bottom: -25px;
  content: "セイ";
  display: block;
  left: 0;
  color: #999999;
  font-size: 14px;
  z-index: 2;
}

.wpcf7-form-control-wrap:has(.mei-kana) {
  position: relative;
  margin-bottom: 25px;
}
.wpcf7-form-control-wrap:has(.mei-kana)::after {
  position: absolute;
  bottom: -25px;
  content: "メイ";
  display: block;
  left: 0;
  color: #999999;
  font-size: 14px;
  z-index: 2;
}

.select-bl.kibou1 {
  position: relative;
  margin-top: 45px;
}
.select-bl.kibou1::before {
  position: absolute;
  top: -25px;
  content: "第1希望";
  display: block;
  left: 0;
  color: #000;
  font-size: 14px;
  z-index: 2;
  font-weight: bold;
}

.select-bl.kibou2 {
  position: relative;
  margin-top: 45px;
}
.select-bl.kibou2::before {
  position: absolute;
  top: -25px;
  content: "第2希望";
  display: block;
  left: 0;
  color: #000;
  font-size: 14px;
  z-index: 2;
  font-weight: bold;
}

.select-bl.kibou3 {
  position: relative;
  margin-top: 45px;
}
.select-bl.kibou3::before {
  position: absolute;
  top: -25px;
  content: "第3希望";
  display: block;
  left: 0;
  color: #000;
  font-size: 14px;
  z-index: 2;
  font-weight: bold;
}

.select-bl.kibou4 {
  position: relative;
  margin-top: 45px;
}
.select-bl.kibou4::before {
  position: absolute;
  top: -25px;
  content: "第4希望";
  display: block;
  left: 0;
  color: #000;
  font-size: 14px;
  z-index: 2;
  font-weight: bold;
}

.zip-bl p {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* プレースホルダー */
::placeholder {
  color: #dadada;
}

/* 確認ページ */
.confirm-page .select-bl {
  border: none;
  border-radius: 0;
  width: 100%;
}
.confirm-page .select-bl::after {
  display: none;
}
.confirm-page .caution-txt {
  display: none;
}
.confirm-page .contact__list li {
  display: flex;
  border-bottom: 1px solid #cccccc;
  margin: 0;
  padding: 25px 0;
}
.confirm-page .contact__list-title {
  font-size: 15px;
  width: 30%;
  margin-bottom: 0;
  align-items: flex-start;
}
.confirm-page .contact__list-input-bl {
  width: 70%;
}
.confirm-page .caution, .confirm-page .nini, .confirm-page .contact__salon-link {
  display: none;
}
.confirm-page .select-bl.kibou1, .confirm-page .select-bl.kibou2, .confirm-page .select-bl.kibou3 {
  margin-top: 0;
}
.confirm-page .select-bl.kibou1::before, .confirm-page .select-bl.kibou2::before, .confirm-page .select-bl.kibou3::before, .confirm-page .select-bl.kibou4::before {
  position: relative;
  top: 0;
  display: inline-block;
}
.confirm-page .select-bl > p {
  display: inline-block;
}
.confirm-page .date-bl {
  width: fit-content;
}
.confirm-page .date-bl + .select-bl {
  width: fit-content;
}
.confirm-page .confirm-btn-flex {
  margin-top: 80px;
}
.confirm-page .confirm-btn-flex > p {
  display: flex;
  gap: 5px;
}
.confirm-page .prev-btn {
  width: 210px;
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #747474;
  border-radius: 100px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}
.confirm-page .sevd-btn {
  width: 360px;
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2586c4;
  border-radius: 100px;
  font-weight: bold;
  color: #fff;
  font-size: 21px;
}

/* タブ切り替え */
.tab-area {
  display: flex;
  border-bottom: 1px solid #000;
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 100px;
}

.tab {
  width: 340px;
  height: 83px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 10px 0 0;
  border: 1px solid #000;
  background: #eaeaea;
  position: relative;
  margin-bottom: -1px;
  font-size: 21px;
  font-weight: 600;
}

.tab.active {
  background-color: #fff;
  color: #000;
  border-bottom: 0;
}

.panel {
  display: none;
  text-align: center;
}

.panel.active {
  display: block;
}

.contact__list-input-bl.zip-bl p:first-of-type, .zip-txt {
  width: 100%;
  align-items: center;
}

#zip {
  background: #f8f7f5;
  width: 100px;
  height: 50px;
  padding: 18px;
}

#zip2 {
  background: #f8f7f5;
  width: 140px;
  height: 50px;
  padding: 18px;
}

.zip-btn {
  width: 90px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  border-radius: 50px;
  background: #f2e5e1;
  font-size: 1.6rem;
}

.zip-txt {
  margin-top: 40px;
}

.contact__list-input-bl.zip-bl {
  align-items: center;
}

.wpcf7-not-valid-tip {
  text-align: left;
}

input[name=sei] + .wpcf7-not-valid-tip,
input[name=mei] + .wpcf7-not-valid-tip,
input[name=sei-kana] + .wpcf7-not-valid-tip,
input[name=mei-kana] + .wpcf7-not-valid-tip,
input[name=time] + .wpcf7-not-valid-tip,
.input-school1 + .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -49px;
}

.entry-page input[name=email] + .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -74px;
}

.input-school1, .input-school2 {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 18px;
  font-size: 16px;
  width: 100%;
}

.wpcf7-form-control-wrap:has(.input-school1) {
  width: calc(60% - 10px);
}

.wpcf7-form-control-wrap:has(.input-school2) {
  width: calc(40% - 10px);
}

.entry__check-bl {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 35px;
  text-align: left;
  margin: 20px 0 60px;
}
.entry__check-bl .txt {
  font-weight: 600;
}

.mt20 {
  margin-top: 20px !important;
}

.entry-check span.wpcf7-list-item {
  margin: 0;
  display: block;
  width: calc(33% - 7px);
}

.entry-check {
  margin-top: 20px;
  display: block;
  width: calc(100% - 260px);
}
.entry-check .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.entry-page .input-school1 + .wpcf7-not-valid-tip {
  bottom: 0 !important;
  left: 0 !important;
  position: relative !important;
}

.entry-confirm .select-bl {
  height: 20px !important;
}

.entry-confirm .select-bl.kibou4 {
  position: relative;
  margin-top: 0;
}

select, input[type=date] {
  color: #000;
}

.contact__confirm .contact__list-title {
  margin-top: 0;
  margin-bottom: 0;
  width: 300px;
}
.contact__confirm .contact__list-input-bl {
  width: calc(100% - 300px);
}

.confirm-btn-flex p {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.confirm-btn-flex p .prev-btn {
  background: #f2e5e1;
  width: 240px;
  height: 75px;
  border-radius: 50px;
  font-weight: 500;
}
.confirm-btn-flex p .sevd-btn {
  background: #eab0d3;
  width: 240px;
  height: 75px;
  border-radius: 50px;
  font-weight: 500;
  color: #fff;
}
.confirm-btn-flex p br {
  display: none;
}

.wpcf7-spinner {
  position: absolute;
}

.txt-center {
  text-align: center !important;
}

.mt-linbnr {
  margin-top: 100px;
}

#subject .wpcf7-list-item:nth-of-type(2) {
  margin: 0 calc(100% - 420px) 0 0;
}

#subject .wpcf7-list-item:nth-of-type(3) {
  width: 195px;
}

.wpcf7-form-control-wrap:has(#subject) {
  width: 100%;
}

.under467-only {
  display: none;
}

.under467-none {
  display: inline-block;
}

@media screen and (max-width: 1200px) {
  .contact__white-bl {
    padding: 50px 30px;
  }
  .contact__list-title {
    font-size: 15px;
    width: 220px;
  }
  .contact__list-input-bl {
    width: calc(100% - 220px);
  }
  .contact__list-date {
    width: calc(100% - 220px);
  }
  .select-bl {
    width: 150px;
    font-size: 14px;
  }
  .select-bl::after {
    width: 6px;
    height: 6px;
    top: 20px;
    right: 15px;
  }
  .entry-check span.wpcf7-list-item {
    width: calc(50% - 7px);
  }
  .contact__main-title {
    font-size: 21px;
  }
}
@media screen and (max-width: 885px) {
  .contact__title {
    font-size: 21px;
  }
  .contact__title-en {
    font-size: 10px;
    margin-bottom: 40px;
  }
  .contact__step li {
    width: 60px;
  }
  .contact__step::before {
    top: 30px;
  }
  .contact__step li .num {
    font-size: 21px;
  }
  .contact__step li .txt {
    font-size: 14px;
  }
  .contact__step {
    width: 250px;
    margin: 0 auto 30px;
  }
  .contact__main-title {
    font-size: 18px;
  }
  .contact__main-bl .txt {
    text-align: left;
    font-size: 15px;
  }
  .select-bl, .date-bl {
    width: 100%;
  }
  .caution {
    font-size: 10px;
  }
  .contact__list-title {
    font-size: 15px;
    margin-top: 0;
  }
  .contact__salon-link {
    font-size: 12px;
  }
  .input-all, .input-harf {
    padding: 10px;
    font-size: 15px;
    width: 100%;
  }
  textarea {
    height: 200px;
  }
  .privacy__main-title {
    font-size: 18px;
    text-align: left;
    margin-bottom: 20px;
  }
  .privacy__slide-bl {
    height: 250px;
    padding: 25px 10px 10px 20px;
  }
  .privacy__middle-title {
    font-size: 16px;
  }
  .privacy__txt {
    font-size: 14px;
  }
  .privacy-check .wpcf7-list-item-label {
    font-size: 14px;
  }
  .privacy-check .wpcf7-list-item-label::before {
    height: 24px;
    margin-right: 10px;
    top: -1px;
    width: 24px;
  }
  .privacy-check input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    height: 17px;
    left: 7px;
    top: 1px;
    width: 9px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
  .contact__btn.blue {
    font-size: 18px;
  }
  .contact__btn.blue.mt40 {
    margin-top: 0px !important;
  }
  .contact__main {
    padding-bottom: 50px;
  }
  .confirm-page .contact__list li {
    flex-wrap: wrap;
  }
  .confirm-page .contact__list-title, .contact__list-input-bl > p, .confirm-page .contact__list-input-bl {
    width: 100%;
  }
  .confirm-page .contact__list li {
    padding: 15px 0;
  }
  .contact__list-input-bl {
    gap: 1px;
  }
  .confirm-page .contact__list-title {
    margin-bottom: 5px;
  }
  .confirm-page .confirm-btn-flex {
    width: fit-content;
    margin: 50px auto 0;
  }
  .confirm-page .confirm-btn-flex > p {
    flex-direction: column-reverse;
    gap: 15px;
  }
  .confirm-page .confirm-btn-flex > p br {
    display: none;
  }
  .confirm-page .sevd-btn {
    width: 250px;
    height: 70px;
    font-size: 16px;
  }
  .confirm-page .prev-btn {
    width: 250px;
    height: 70px;
    font-size: 16px;
  }
  .wpcf7-spinner {
    width: 0;
    height: 0;
  }
  .contact__list-input-bl > p {
    flex-wrap: wrap;
  }
  .wpcf7-form-control-wrap {
    width: 100%;
  }
  .date-bl {
    margin-bottom: 10px;
  }
  .contact__btn-bl {
    gap: 15px;
    flex-direction: column;
    margin: 0 auto;
    width: fit-content;
  }
  .contact__btn {
    width: 250px;
    max-width: 100%;
    height: 70px;
    font-size: 18px;
  }
  .contact__btn .small {
    font-size: 14px;
  }
  .tab {
    width: 47.5%;
    height: 55px;
    font-size: 14px;
  }
  .tab-area {
    gap: 5px;
    margin-bottom: 40px;
  }
  input[name=sei] + .wpcf7-not-valid-tip, input[name=mei] + .wpcf7-not-valid-tip, input[name=sei-kana] + .wpcf7-not-valid-tip, input[name=mei-kana] + .wpcf7-not-valid-tip, .input-school1 + .wpcf7-not-valid-tip {
    bottom: -23px;
    left: 45px;
  }
  #time + .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -49px;
  }
  .wpcf7-not-valid-tip {
    font-size: 13px !important;
  }
  .wpcf7-form-control-wrap:has(.select-style), .select-bl, .select-style {
    height: 59px;
  }
  .date-bl .wpcf7-form-control {
    height: 59px;
  }
  .radio {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .radio .wpcf7-list-item-label {
    font-size: 14px;
  }
  .radio .wpcf7-list-item-label::before {
    height: 20px;
    margin-right: 0.3em;
    width: 20px;
  }
  .radio .wpcf7-list-item.first {
    margin-right: 1em;
  }
  .radio .wpcf7-list-item {
    margin: 0 1em 0 0;
  }
  .wpcf7-form-control-wrap:has(.input-school1) {
    width: 100%;
  }
  .wpcf7-form-control-wrap:has(.input-school2) {
    width: 100%;
  }
  .contact__list-input-bl.zip-bl p:first-of-type, .zip-txt {
    width: 100% !important;
  }
  .zip-txt {
    margin-top: 0;
    font-size: 13px;
    text-align: left;
  }
  .entry__check-bl {
    padding: 25px;
    margin: 20px 0 30px;
  }
  .entry-check .wpcf7-list-item-label::before {
    height: 24px;
    margin-right: 10px;
    top: -1px;
    width: 24px;
  }
  .entry-check input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    height: 17px;
    left: 7px;
    top: 1px;
    width: 9px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
  .entry-check .wpcf7-list-item-label {
    font-size: 14px;
  }
  .entry__check-bl .txt {
    font-size: 15px;
  }
  .entry-confirm .select-bl {
    height: 20px !important;
  }
  .contact__list li {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .contact__list-input-bl {
    width: 100%;
  }
  .contact__list-input-bl:has(input[type=radio]) {
    padding-top: 0;
  }
  .input-all, #tel {
    padding: 10px;
    font-size: 15px;
  }
  .wpcf7-form-control-wrap {
    width: fit-content;
  }
  .wpcf7-form-control-wrap:has(.select-style) {
    width: 100%;
  }
  .contact__white-bl {
    padding: 30px 25px;
  }
  .conatct__caution-txt {
    font-size: 1.4rem;
    padding-bottom: 8px;
    margin-bottom: 25px;
  }
  #zip {
    width: 60px;
    height: auto;
    padding: 10px;
    font-size: 15px;
  }
  #zip2 {
    width: 70px;
    height: auto;
    padding: 10px;
    font-size: 15px;
  }
  .zip-btn {
    width: 70px;
    height: 40px;
    font-size: 1.4rem;
  }
  .contact__list-date {
    width: 100%;
  }
  .date-item > p {
    height: fit-content;
  }
  #month1, #month2, #date1, #date2 {
    width: 70px;
    height: auto;
    padding: 10px;
    font-size: 15px;
  }
  .entry-check {
    width: 100%;
  }
  .entry-check span.wpcf7-list-item {
    width: 100%;
  }
  .contact__white-bl {
    padding: 30px 25px 20px;
  }
  .contact__tel-btn {
    width: 300px;
    max-width: 100%;
    height: 80px;
    margin: 0 auto 40px;
  }
  .contact__tel-btn .big {
    font-size: 2rem;
  }
  .contact__tel-btn .big .icon-phone {
    width: 17px;
    height: 17px;
    margin-right: 7px;
  }
  .contact__main-bl {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .contact__btn.pink {
    width: 200px;
    height: 65px;
    font-size: 17px;
  }
  .contact__confirm .contact__list-title {
    width: 100%;
  }
  .contact__confirm .contact__list-input-bl {
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }
  .contact__confirm .contact__list li {
    margin-bottom: 20px;
  }
  .contact__confirm .confirm-btn-flex p {
    align-items: center;
    gap: 15px;
    margin: 30px auto 40px;
    flex-direction: column-reverse;
  }
  .contact__btn.pink.contact__btn-thanks {
    margin: 0 auto 50px;
    width: 200px;
  }
  .mt-linbnr {
    margin-top: 40px;
  }
  .entry-check input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    height: 14px;
    left: 8px;
    top: 1px;
    width: 6px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
  .confirm-btn-flex p .sevd-btn {
    width: 200px;
    height: 65px;
  }
  .confirm-btn-flex p .prev-btn {
    width: 200px;
    height: 65px;
  }
}
@media screen and (max-width: 840px) {
  .entry-page input[name=email] + .wpcf7-not-valid-tip {
    bottom: -90px;
  }
}
@media screen and (max-width: 716px) {
  #time + .wpcf7-not-valid-tip {
    bottom: -71px;
  }
  .radio .wpcf7-list-item.first, .radio .wpcf7-list-item {
    width: 100%;
  }
  #subject .wpcf7-list-item:nth-of-type(2) {
    margin: 0 0 0 0;
  }
  #subject .wpcf7-list-item:nth-of-type(3) {
    width: 100%;
  }
}
@media screen and (max-width: 528px) {
  .entry-page input[name=email] + .wpcf7-not-valid-tip {
    bottom: -112px;
  }
}
@media screen and (max-width: 467px) {
  .entry-page input[name=email] + .wpcf7-not-valid-tip {
    bottom: -132px;
  }
  input[name=sei] + .wpcf7-not-valid-tip, input[name=mei] + .wpcf7-not-valid-tip, input[name=sei-kana] + .wpcf7-not-valid-tip, input[name=mei-kana] + .wpcf7-not-valid-tip, .input-school1 + .wpcf7-not-valid-tip {
    bottom: -23px;
    left: 37px;
  }
  .wpcf7-not-valid-tip {
    font-size: 11px !important;
  }
  .contact__main-title {
    font-size: 18px;
  }
  .contact__white-bl {
    padding: 30px 15px 40px;
  }
  .under_title span.contact-ttl {
    font-size: 4.2rem;
  }
  .under467-only {
    display: inline-block;
  }
  .under467-none {
    display: none;
  }
}

/*# sourceMappingURL=under2.css.map */