@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Noto+Sans+JP:wght@100..900&display=swap");
/* reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* base styles */
:root {
  color-scheme: light;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-size: 62.5%;
  font-family:
    "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック",
    "MS PGothic", sans-serif;
  font-weight: 400;
}

body {
  color: #221815;
  margin: 0;
  line-height: inherit;
  font-size: 1.6rem;
  background: #fff;
}
@media (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

.l-wrap {
  position: relative;
  overflow: hidden;
}

.l-header {
  position: fixed;
  left: 20px;
  top: 20px;
  width: 100%;
  width: calc(100% - 40px);
  height: 70px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 0px 50px rgba(237, 237, 237, 0.1);
  border-radius: 10px;
}
@media (max-width: 767px) {
  .l-header {
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: 60px;
  }
}

.l-nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.l-nav.is-active {
  position: fixed;
  z-index: 40;
}

.l-main {
  position: relative;
}

.l-footer {
  position: relative;
}

.l-container {
  position: relative;
}

.l-content {
  padding-top: 1px;
  padding-bottom: 1px;
  max-width: 1140px;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
.l-content--large {
  max-width: 1405px;
}
.l-content--small {
  max-width: 696px;
}
.l-content--with-sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2.5vw, 59px);
  margin-top: 90px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .l-content--with-sidebar {
    display: block;
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .l-content {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.l-content .l-content--small {
  padding-left: 0;
  padding-right: 0;
}

.l-sidebar {
  position: sticky;
  right: 0;
  top: 130px;
  order: 1;
  flex: 0 0 225px;
}
@media (max-width: 767px) {
  .l-sidebar {
    margin-top: 60px;
    position: relative;
    top: auto;
  }
}

.c-impact {
  font-size: 2rem;
  font-weight: bold;
}

.c-lead {
  font-size: 2rem;
  letter-spacing: 5%;
  font-weight: 500;
}

.c-note {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.875em;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .c-note {
    font-size: 1.3rem;
    margin-bottom: 25px;
    margin-left: -15px;
    margin-right: -15px;
  }
}

.c-text {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.75em;
}
@media (max-width: 767px) {
  .c-text {
    font-size: 1.4rem;
    line-height: 1.7143em;
  }
}

hr {
  border: none;
  border-bottom: 1px solid #221815;
  margin: 15px auto;
  display: block;
}

.c-hr {
  border: none;
  border-bottom: 3px dashed white;
  margin: 40px auto;
  display: block;
}
.c-hr--line {
  border-bottom: 1px solid #e1e1e1;
  margin: 55px auto;
}

.c-deco {
  position: absolute;
  z-index: 2;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 767px) {
  .c-deco {
    transform: scale(0.5) !important;
  }
}
.c-deco--cat-dog {
  background-image: url(../img/deco-cat-dog.png);
  width: 214px;
  height: 300px;
}
.c-deco--cat {
  background-image: url(../img/deco-cat.png);
  width: 114px;
  height: 130px;
}
.c-deco--dog-2 {
  background-image: url(../img/deco-dog-2.png);
  width: 206.5px;
  height: 226px;
}
.c-deco--dog-3 {
  background-image: url(../img/deco-dog-3.png);
  width: 119.5px;
  height: 166px;
}
.c-deco--dog {
  background-image: url(../img/deco-dog.png);
  width: 210px;
  height: 182px;
}
.c-deco--dog-cat {
  background-image: url(../img/deco-dog-cat.png);
  width: 228.5px;
  height: 264.5px;
}

.c-anchor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}
@media (max-width: 767px) {
  .c-anchor-list {
    display: block;
  }
}
@media (max-width: 767px) {
  .c-anchor-list--grid-sp .c-anchor {
    text-align: left !important;
  }
}
@media (max-width: 767px) {
  .c-anchor-list--grid-sp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px 10px;
  }
}
@media (max-width: 767px) {
  .c-anchor-list--info .c-anchor {
    text-align: left !important;
  }
}

.c-anchor {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 5%;
  line-height: 1.5em;
  position: relative;
  margin: 0;
}
@media (max-width: 767px) {
  .c-anchor {
    text-align: center;
    display: block;
    margin-bottom: 20px;
  }
}
.c-anchor::before {
  content: "";
  display: inline-block;
  background: url(../img/anchor.svg) 0 0 no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  margin-right: 1px;
}
.c-anchor a {
  text-decoration: none;
  color: #221815;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-anchor a {
    line-height: 1.5em;
  }
}
.c-anchor a:hover {
  text-decoration: none;
  color: #d9d9d9;
}

.c-plan-grid {
  margin-top: 90px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 25px;
}
@media (max-width: 767px) {
  .c-plan-grid {
    display: block;
    margin-top: 30px;
  }
}

.c-plan {
  flex: 1;
  min-width: 0;
  position: relative;
  border-radius: 20px;
  background: #fff;
  border: 3px solid #eace34;
}
@media (max-width: 767px) {
  .c-plan {
    margin-bottom: 30px;
  }
}
.c-plan .c-btn {
  margin-bottom: 30px;
}
.c-plan .c-btn i {
  font-size: 1.5em;
  position: absolute;
  right: 15px;
  top: 20px;
}
.c-plan--red {
  border: 3px solid #dc7434;
  top: -20px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .c-plan--red {
    top: auto;
    padding-bottom: 0;
  }
}
.c-plan--red .c-plan__up {
  background: #dc7434;
  padding-top: 30px;
}
.c-plan--red .c-plan__up::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/osusume.png) center top no-repeat;
  background-size: contain;
  width: 159px;
  height: 58.5px;
  left: 50%;
  margin-left: -79.5px;
  top: -30px;
}
.c-plan--blue {
  border: 3px solid #7dbae7;
}
.c-plan--blue .c-plan__up {
  background: #7dbae7;
}
.c-plan__up {
  text-align: center;
  color: #fff;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  background: #eace34;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 10px;
}
@media (max-width: 767px) {
  .c-plan__up {
    font-size: 1.7rem;
  }
}
.c-plan__planname {
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .c-plan__planname {
    font-size: 2.5rem;
  }
}
.c-plan__price {
  margin-top: 0;
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
}
.c-plan__price .u-big {
  font-size: 3.6rem;
}
.c-plan__text {
  text-align: left;
  border-top: 2px dashed #e9e7dd;
  margin-left: 35px;
  margin-right: 35px;
  margin-bottom: 35px;
  font-size: 1.4rem;
  line-height: 1.875em;
  padding-bottom: 1px;
  padding-top: 10px;
}

.c-box {
  position: relative;
  border-radius: 20px;
  padding: 35px;
}

.c-ic {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.c-ic--facebook {
  background: url(../img/ic-facebook.png) 0 0 no-repeat;
  background-size: contain;
  width: 38px;
  height: 38px;
}
.c-ic--insta {
  background: url(../img/ic-insta.png) 0 0 no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
}
.c-ic--qna {
  background: url(../img/ic-qna.png) 0 0 no-repeat;
  background-size: contain;
  width: 96px;
  height: 92px;
}
.c-ic--voice {
  background: url(../img/ic-voice.png) 0 0 no-repeat;
  background-size: contain;
  width: 96px;
  height: 92px;
}
.c-ic--contact {
  background: url(../img/ic-contact.png) 0 0 no-repeat;
  background-size: contain;
  width: 96px;
  height: 92px;
}
.c-ic--recruit {
  background: url(../img/ic-recruit.png) 0 0 no-repeat;
  background-size: contain;
  width: 96px;
  height: 92px;
}

.c-section {
  position: relative;
  padding-top: 1px;
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .c-section {
    padding-bottom: 40px;
  }
}

.c-split {
  display: flex;
  position: relative;
  gap: 40px;
  margin: 60px auto;
}
@media (max-width: 767px) {
  .c-split {
    flex-wrap: wrap;
    gap: 40px;
  }
}
.c-split__content {
  position: relative;
  width: 52%;
}
@media (max-width: 767px) {
  .c-split__content {
    width: 100%;
  }
}
.c-split__content .c-title-3:first-child {
  margin-top: 0;
}
.c-split__pic {
  position: relative;
}
@media (max-width: 767px) {
  .c-split__pic {
    width: 100%;
  }
}
.c-split__pic img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 100%;
  max-height: 464px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .c-split__pic img {
    border-radius: 20px;
  }
}
.c-split .c-deco--split-1 {
  left: 20px;
  top: -61px;
}
@media (max-width: 767px) {
  .c-split .c-deco--split-1 {
    top: -47px;
  }
}
.c-split .c-deco--split-2 {
  right: 210px;
  top: -83px;
}
@media (max-width: 767px) {
  .c-split .c-deco--split-2 {
    right: auto;
    left: 0px;
    top: -62px;
  }
}
.c-split--reverse .c-split__pic img {
  border-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 767px) {
  .c-split--reverse .c-split__pic img {
    border-radius: 20px;
  }
}

.c-item-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.c-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.c-item__header {
  position: relative;
  background: #4788d9;
  padding: 25px;
  text-align: center;
}
.c-item__title {
  margin-top: 0;
  color: #fff;
  text-align: center;
  line-height: 1.5em;
}
.c-item__caption {
  background: #fff;
  display: block;
  border: 2px solid #4788d9;
  border-radius: 9999px;
  padding: 2px 15px;
  position: relative;
  margin-bottom: -45px !important;
  width: 130px;
  margin-left: auto;
  margin-right: auto;
}
.c-item__caption.u-color-red {
  border: 2px solid #dc7434;
}
.c-item__caption.u-color-green {
  border: 2px solid #d7e7cf;
}
.c-item__content {
  position: relative;
  padding: 60px 30px 30px;
}
.c-item__content img {
  display: block;
  width: 112px;
  margin: 0 auto;
}
.c-item__title-2 {
  text-align: center;
  font-weight: normal;
  color: #4788d9;
  font-size: 1.6rem;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.c-item__title-2 .u-bold {
  font-size: 2.2rem;
}
.c-item__price {
  border-top: 2px dashed #fff;
  border-bottom: 2px dashed #fff;
  text-align: center;
  font-size: 1.8rem;
  padding: 15px 0;
  margin: 20px auto;
  min-height: 100px;
}
.c-item__price .u-big {
  font-weight: bold;
  font-size: 1.5em;
}
.c-item__item {
  background: #fff;
  margin-bottom: 10px;
}
.c-item__item p {
  padding: 15px;
  margin: 0 !important;
}
.c-item__title-3 {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
  border-left: 4px solid #dc7434;
  padding: 10px 5px 5px 10px;
}
.c-item--green .c-item__title-3 {
  border-left: 4px solid #d7e7cf;
}
.c-item--blue .c-item__title-3 {
  border-left: 4px solid #4788d9;
}
.c-item--red .c-item__header {
  background: #dc7434;
}
.c-item--red .c-item__caption {
  border-color: #dc7434;
}
.c-item--red .c-item__content img {
  width: 318px;
}
.c-item--set {
  border: 2px solid #dc7434;
}
.c-item--set .c-item__header {
  text-align: center;
}
.c-item--set .c-item__caption {
  width: 300px;
}
.c-item--set .c-item__content img {
  width: 250px;
}
.c-item--set .c-item__title-2 {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.5em;
  min-height: auto;
  display: block;
}
.c-item--set .c-item__note {
  font-weight: bold;
  text-align: center !important;
  font-size: 2rem;
  padding: 10px;
  margin-bottom: 0;
}
.c-item--set .c-item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 -25px !important;
}
.c-item--set .c-item__price .u-big {
  font-size: 5rem;
}
.c-item--set .c-item__price-tax {
  font-weight: normal;
  font-size: 1.6rem;
}
.c-item--set .c-item__price-month {
  border: 1px solid #dc7434;
  flex: 0 0 100px;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2em;
  margin: 0 !important;
  padding: 10px 0px;
}
.c-item__circle {
  max-width: 385px;
  width: 100% !important;
  margin: 15px auto !important;
  display: block;
}
.c-item__price-up {
  text-align: center;
  padding: 15px;
  font-size: 1.8rem;
}
.c-item.c-item--set.c-item--blue {
  border: 2px solid #4788d9 !important;
}
.c-item.c-item--set.c-item--blue .c-item__header {
  background: #58b5c3;
}
.c-item.c-item--set.c-item--blue .c-item__caption {
  width: 200px;
}
.c-item.c-item--set.c-item--blue .c-item__price-month {
  border: 1px solid #4788d9;
}

.c-col {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 70px auto;
}
@media (max-width: 767px) {
  .c-col {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.c-col__content {
  flex: 1;
}
.c-col__content p {
  margin-block-start: 0;
}
.c-col__content .c-title-3 {
  margin-top: 0;
}
@media (max-width: 767px) {
  .c-col__content {
    flex: 0 0 100%;
    padding-right: 0;
    margin-bottom: 30px;
    order: 2;
  }
}
.c-col__pic {
  flex: 0 0 350px;
  position: relative;
}
@media (max-width: 767px) {
  .c-col__pic {
    flex: 0 0 100%;
    padding-top: 30px;
    order: 1;
  }
}

.c-gall {
  position: relative;
  max-width: 400px;
}
@media (max-width: 767px) {
  .c-gall {
    max-width: 100%;
  }
}
.c-gall .swiper-wrapper {
  padding-bottom: 50px;
}
.c-gall .swiper-slide img {
  border-radius: 80px;
  border: 2px solid #222;
}
@media (max-width: 767px) {
  .c-gall .swiper-slide img {
    border-radius: 40px;
  }
}
.c-gall .swiper-button-prev {
  background: url(../img/prev.png) 0 0 no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  top: auto;
  bottom: 0;
  margin: 0;
}
.c-gall .swiper-button-prev::after {
  display: none;
}
.c-gall .swiper-button-next {
  background: url(../img/next.png) 0 0 no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  top: auto;
  bottom: 0;
  margin: 0;
}
.c-gall .swiper-button-next::after {
  display: none;
}
.c-gall .swiper-pagination {
  bottom: 0 !important;
}
.c-gall .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 100%;
  border: 2px solid #222;
}
.c-gall .swiper-pagination .swiper-pagination-bullet-active {
  background: #f1e421;
}
.c-gall--large {
  max-width: 900px;
  margin: 45px auto;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 767px) {
  .c-gall--large {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.c-gall--large .swiper-slide {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 767px) {
  .c-gall--large .swiper-slide {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.c-gall--large .swiper-button-prev {
  bottom: auto;
  top: 50%;
  margin-top: -40px;
  left: 30px;
}
@media (max-width: 767px) {
  .c-gall--large .swiper-button-prev {
    left: 0;
  }
}
.c-gall--large .swiper-button-next {
  bottom: auto;
  top: 50%;
  margin-top: -40px;
  right: 30px;
}
@media (max-width: 767px) {
  .c-gall--large .swiper-button-next {
    right: 0;
  }
}

.c-pics {
  position: relative;
  grid-gap: 25px;
  margin: 50px auto;
}
.c-pics img {
  border-radius: 20px;
}
.c-pics--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .c-pics--2 {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
}
.c-pics--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .c-pics--3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-point-list {
  position: relative;
  margin-top: 85px;
}
@media (max-width: 767px) {
  .c-point-list {
    margin-top: 30px;
  }
}

.c-point {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .c-point {
    margin-bottom: 35px;
  }
}
.c-point__content {
  position: relative;
  flex: 1 1 520px;
  min-width: 320px;
  max-width: 630px;
}
@media (max-width: 767px) {
  .c-point__content {
    flex: initial;
    width: 100%;
    order: 2 !important;
  }
}
.c-point__pic {
  position: relative;
  flex: 1 1 500px;
  min-width: 320px;
  max-width: 500px;
}
.c-point__pic img {
  border-radius: 20px;
}
@media (max-width: 767px) {
  .c-point__pic {
    flex: initial;
    width: 100%;
    order: 1 !important;
  }
}
.c-point__num {
  font-size: 6rem;
  margin-top: 0;
  margin-bottom: 0 !important;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-point__num {
    text-align: center;
    font-size: 4.5rem;
    margin-top: 10px;
    margin-bottom: 10px !important;
  }
}
.c-point__title {
  margin-top: 0;
  font-size: 2.7rem;
  line-height: 1.5em;
}
@media (max-width: 767px) {
  .c-point__title {
    font-size: 2.4rem;
    text-align: center;
  }
}
.c-point__title .u-big {
  font-size: 3rem;
}
.c-point__text {
  font-size: 1.8rem;
  line-height: 2em;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .c-point__text {
    font-size: 1.5rem;
  }
}
.c-point--sv {
  align-items: flex-start;
  border-bottom: 2px dashed white;
}
.c-point--sv:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.c-point--sv .c-point__content {
  padding-right: 30px;
}
@media (max-width: 767px) {
  .c-point--sv .c-point__content {
    padding: 0;
  }
}
.c-point--sv .c-point__pic {
  position: relative;
}
.c-point--sv .c-point__pic img:nth-child(1) {
  border-radius: 20px;
  border: 4px solid white;
  width: 100%;
}
.c-point--sv .c-point__pic img:nth-child(2) {
  border-radius: 20px;
  border: 4px solid white;
  width: 300px;
  position: relative;
  left: -30px;
  top: -50px;
}
@media (max-width: 767px) {
  .c-point--sv .c-point__pic img:nth-child(2) {
    width: 150px;
    left: -15px;
    top: -25px;
  }
}
.c-point--sv .p-point__stick-2 {
  display: none;
}
.c-point--sv .p-point__stick-3 {
  display: none;
}
.c-point--sv .p-point__stick-4 {
  display: none;
}
.c-point--sv .c-btn {
  width: 420px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .c-point--sv .c-btn {
    width: 100%;
  }
}
.c-point--reverse .c-point__pic {
  order: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.c-point--reverse .c-point__pic img:nth-child(1) {
  width: 100%;
}
.c-point--reverse .c-point__pic img:nth-child(2) {
  left: auto;
  right: -30px;
}
@media (max-width: 767px) {
  .c-point--reverse .c-point__pic img:nth-child(2) {
    right: -15px;
  }
}
.c-point--reverse .c-point__content {
  order: 2;
  padding-right: 0px;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .c-point--reverse .c-point__content {
    padding: 0;
  }
}

.c-link {
  display: inline-block;
  text-align: left;
  color: #221815;
  transition: 0.3s ease;
  text-decoration: none;
  position: relative;
  font-size: 1.8rem;
}
.c-link i {
  color: #f1a52e;
}
.c-link:hover {
  color: #f1a52e;
}
.c-link:hover::before {
  left: 15px;
}

.c-banner {
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  height: 250px;
  text-decoration: none;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .c-banner {
    border-radius: 50px;
    height: 168px;
  }
}
.c-banner:hover .c-banner__pic {
  opacity: 0.7;
}
.c-banner__pic {
  transition: 0.3s ease;
  width: 50%;
  overflow: hidden;
  height: 250px;
}
@media (max-width: 767px) {
  .c-banner__pic {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    height: 168px;
  }
}
.c-banner__content {
  width: 50%;
  padding: 25px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .c-banner__content {
    padding: 10px 15px;
  }
}
.c-banner__title {
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  color: #221815;
}
@media (max-width: 767px) {
  .c-banner__title {
    font-size: 1.8rem;
  }
}
.c-banner__tag {
  font-size: 1.3rem;
  color: #ea5432;
  letter-spacing: 0.3em;
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .c-banner__tag {
    font-size: 1rem;
  }
}
.c-banner--row {
  display: block;
  overflow: initial;
}
@media (max-width: 767px) {
  .c-banner--row {
    height: auto;
  }
}
.c-banner--row:hover .c-banner__pic img {
  opacity: 0.7;
}
.c-banner--row .c-banner__pic {
  border-radius: 0;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .c-banner--row .c-banner__pic {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
.c-banner--row .c-banner__pic img {
  transition: 0.3s ease;
}
.c-banner--row .c-banner__content {
  padding: 20px;
  width: 100%;
  background: #ebeef5;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}
@media (max-width: 767px) {
  .c-banner--row .c-banner__content {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}
.c-banner .c-btn {
  width: 140px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .c-banner .c-btn {
    width: 120px;
  }
}

/*
CTA
*/
.c-cta {
  position: relative;
  margin: 100px auto 0;
  background: #2b70aa;
  padding: 1px 0 140px;
  z-index: 5;
}
@media (max-width: 767px) {
  .c-cta {
    margin-top: -55px;
    padding-bottom: 110px;
  }
}
.c-cta::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 10px;
  background: url(../img/wave-top-white.png) left top repeat-x;
  background-size: 1400px 10px;
}
.c-cta::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: url(../img/wave-bottom-white.png) left top repeat-x;
  background-size: 1400px 10px;
}
.c-cta__picto {
  width: 458px;
  margin: -80px auto 20px;
}
@media (max-width: 767px) {
  .c-cta__picto {
    width: 304px;
    margin-top: -40px;
  }
}
.c-cta__title {
  text-align: center;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1em;
  margin-bottom: 15px;
  margin-top: 0;
  color: #fff;
}
@media (max-width: 767px) {
  .c-cta__title {
    font-size: 2.5rem;
    line-height: 1.5em;
  }
}
.c-cta__title-up {
  color: white;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  display: block;
}
@media (max-width: 767px) {
  .c-cta__title-up {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.c-cta__title-down {
  color: white;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-cta__title-down {
    font-size: 1.5rem;
    margin-top: 15px;
  }
}
.c-cta__feats {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .c-cta__feats {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.c-cta__feat {
  background: #fff;
  border-radius: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-weight: bold;
  font-size: 1.8rem;
  width: 200px;
  height: 200px;
}
@media (max-width: 767px) {
  .c-cta__feat {
    width: 115px;
    height: 115px;
    font-size: 1.5rem;
  }
}
.c-cta__grid {
  display: flex;
  margin-top: 45px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 767px) {
  .c-cta__grid {
    margin-top: 25px;
    padding: 15px;
    display: block;
  }
}
.c-cta__item {
  flex: 1;
  position: relative;
}
@media (max-width: 767px) {
  .c-cta__item {
    padding: 25px 15px;
  }
}
.c-cta__item:nth-child(2)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  border-left: 2px dashed #eeeeee;
}
@media (max-width: 767px) {
  .c-cta__item:nth-child(2)::before {
    border: none;
    border-top: 2px dashed #eeeeee;
    width: 100%;
    height: 1px;
  }
}
.c-cta__item:nth-child(2)::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  border-left: 2px dashed #eeeeee;
}
@media (max-width: 767px) {
  .c-cta__item:nth-child(2)::after {
    border: none;
    border-bottom: 2px dashed #eeeeee;
    width: 100%;
    height: 1px;
    bottom: 0;
    top: auto;
  }
}
.c-cta__tel-up {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 0;
}
@media (max-width: 767px) {
  .c-cta__tel-up {
    font-size: 1.5rem;
  }
}
.c-cta__tel {
  font-weight: bold;
  text-align: center;
  font-size: 4rem;
  text-decoration: none;
  display: block;
  margin: 0;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-cta__tel {
    font-size: 3.2rem;
  }
}
.c-cta__tel-down {
  text-align: center;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .c-cta__tel-down {
    font-size: 1.2rem;
  }
}
.c-cta__tel-note {
  text-align: center;
}
@media (max-width: 767px) {
  .c-cta__tel-note {
    font-size: 1.2rem;
  }
}
.c-cta__title-2 {
  font-weight: 500;
  text-align: center;
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .c-cta__title-2 {
    margin-bottom: 15px;
  }
}
.c-cta__btn-note {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.5rem;
}
.c-cta .c-btn {
  width: auto;
  max-width: 300px;
}

/*
ENTRY
*/
.p-entry .c-stick--bus {
  right: 150px;
  bottom: -100px;
}
@media (max-width: 767px) {
  .p-entry .c-stick--bus {
    right: 0;
    bottom: -75px;
  }
}

.p-edu .c-stick--bird-butter {
  left: 80px;
  top: -30px;
}
@media (max-width: 767px) {
  .p-edu .c-stick--bird-butter {
    left: -30px;
  }
}
.p-edu .c-stick--block-y {
  right: 80px;
  bottom: -30px;
}
@media (max-width: 767px) {
  .p-edu .c-stick--block-y {
    right: 0;
  }
}

.p-join .c-stick--beary-y {
  right: 70px;
  top: -40px;
}

.c-breadcrumb {
  margin: 0px auto;
  width: 100%;
  max-width: 1340px;
  padding-left: 50px;
  padding-right: 50px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .c-breadcrumb {
    display: none;
  }
}
.c-breadcrumb__list {
  text-align: left;
}
.c-breadcrumb__list li {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
}
.c-breadcrumb__list li::after {
  content: "/";
  padding: 0 5px;
}
.c-breadcrumb__list li:last-child::after {
  content: none;
}
.c-breadcrumb__list li a {
  text-decoration: none;
  color: #221815;
  font-size: 1.2rem;
  font-weight: 500;
}
.c-breadcrumb__list li a:hover {
  text-decoration: underline;
}

.c-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}
.c-entry-grid--top {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
}
.c-entry-grid--cat {
  margin-top: -20px;
}
@media (max-width: 767px) {
  .c-entry-grid {
    display: block;
  }
}

.c-entry {
  position: relative;
}
@media (max-width: 767px) {
  .c-entry {
    padding: 20px 0;
  }
}
.c-entry__item {
  position: relative;
}
.c-entry__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.c-entry__link:hover + .c-entry__pic + .c-entry__content .c-entry__title {
  text-decoration: underline;
}
.c-entry__pic {
  position: relative;
}
.c-entry__pic img {
  border-radius: 5px;
}
@media (max-width: 767px) {
  .c-entry__pic {
    max-width: 100%;
    width: 100%;
  }
}
.c-entry__content {
  position: relative;
}
@media (max-width: 767px) {
  .c-entry__content {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .c-entry__info {
    text-align: center;
  }
}
.c-entry__category {
  display: inline-block;
}
.c-entry__category a,
.c-entry__category span {
  display: inline-block;
  color: #221815;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 2px;
  line-height: 150%;
  letter-spacing: 10%;
  background: #a8cdb8;
  padding: 2px 6px;
}
@media (max-width: 767px) {
  .c-entry__category a,
  .c-entry__category span {
    font-size: 1.6rem;
  }
}
.c-entry__category--new {
  background: none !important;
  border: 1px solid #e7b290;
  color: #e7b290 !important;
}
.c-entry__time {
  display: inline-block;
  font-size: 1.4rem;
  color: #221815;
  line-height: 150%;
  letter-spacing: 10%;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .c-entry__time {
    font-size: 1.8rem;
  }
}
.c-entry__title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #221815;
  line-height: 1.4em;
  letter-spacing: 5%;
  margin: 5px 0 0;
  padding: 0;
  text-wrap: initial;
}
@media (max-width: 767px) {
  .c-entry__title {
    font-size: 2rem;
    margin-top: 10px;
  }
}
.c-entry__title a {
  text-decoration: none;
  color: #221815;
}
.c-entry__ex {
  color: #666666;
}
.c-entry--side {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
}
.c-entry--side .c-entry__pic {
  flex: 0 0 100px;
}
.c-entry--side .c-entry__pic img {
  border-radius: 10px;
}
.c-entry--side .c-entry__content {
  flex: 1;
  padding: 0;
}
.c-entry--side .c-entry__title {
  font-weight: normal;
  font-size: 1.5rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-news-list {
  position: relative;
  margin: 0 auto 35px;
  border-top: 1px solid #e9e9e9;
}

.c-news {
  position: relative;
  background: #fff;
  box-sizing: border-box;
  color: #221815;
  text-decoration: none;
  padding: 25px 0;
  position: relative;
  transition: 0.3s ease;
  cursor: pointer;
  padding-right: 100px;
  border-bottom: 1px solid #e9e9e9;
  gap: 0 25px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .c-news {
    display: block;
  }
}
.c-news:after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12.5px;
  background: url(../img/angle-right.png) center center no-repeat;
  background-size: contain;
  transition: 0.3s ease;
}
.c-news:hover {
  opacity: 0.5;
}
.c-news:hover::after {
  right: 0;
}
@media (max-width: 767px) {
  .c-news {
    padding: 20px 20px;
  }
}
.c-news--cat {
  border-bottom: none;
}
.c-news__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.c-news__link:hover + .c-news__info + .c-news__title {
  text-decoration: underline;
  color: #f1a52e;
}
.c-news__link:hover + .c-news__info + .c-news__title a {
  color: #f1a52e;
}
.c-news__info {
  display: flex;
  align-items: center;
  width: 350px;
  gap: 25px;
  flex: 0 0 300px;
}
@media (max-width: 767px) {
  .c-news__info {
    margin-bottom: 15px;
  }
}
.c-news__time {
  font-size: 1.6rem;
  color: #221815;
  line-height: 150%;
  display: inline-block;
}
@media (max-width: 767px) {
  .c-news__time {
    font-size: 1.5rem;
  }
}
.c-news__categories {
  position: relative;
  margin: 0 auto;
}
.c-news__category {
  position: relative;
  z-index: 3;
  transition: 0.3s ease;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 8px 16px;
  text-align: center;
  color: #221815;
  border: 1px solid #eace34;
  border-radius: 9999px;
  background: none;
  text-decoration: none;
}
@media (max-width: 767px) {
  .c-news__category {
    padding: 4px 8px;
  }
}
.c-news__category:hover {
  background: #eace34;
}
.c-news__category.is-active {
  background: #eace34;
  color: #fff;
}
.c-news__title {
  min-width: 0;
  margin: 0px 0 0;
  padding: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 767px) {
  .c-news__title {
    width: 100%;
    padding-right: 0;
  }
}
.c-news__title > a {
  color: #221815;
  font-weight: normal;
  font-size: 1.6rem;
  text-decoration: none;
  display: block;
  width: 100%;
  line-height: 1.875em;
  transition: 0.3s ease;
}
.c-news__title > a:hover {
  color: #f1a52e;
}

/*
<li v-for="post in posts" :key="post.id">
      <time class="c-list-news__time" :datetime="post.date">
        {{ formatDate(post.date) }}
      </time>
      <div class="c-list-news__category">
        <a :href="'/category/' + getPrimaryCategory(post)">
          {{ getPrimaryCategory(post) }}
        </a>
      </div>
      <h3 class="c-list-news__title">
        <a :href="post.link" v-html="post.title.rendered"></a>
      </h3>
    </li>
*/
.c-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
@media (max-width: 767px) {
  .c-case-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 16px;
  }
}

.c-case {
  position: relative;
  padding: 8px;
  border-radius: 20px;
  padding-bottom: 30px;
}
.c-case__link {
  text-decoration: none;
}
.c-case__pic {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.c-case__pic-1 {
  border: 1px solid #e4e1d7;
  border-radius: 10px;
  flex: 2.64 1 0;
  min-width: 0;
}
.c-case__pic-2 {
  border: 1px solid #e4e1d7;
  border-radius: 10px;
  flex: 1 1 0;
  min-width: 0;
}
.c-case__tags {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.c-case__tag {
  color: #fff;
  background: #f4c555;
  font-size: 1.5rem;
  border-radius: 9999px;
  padding: 5px 10px;
  margin: 24px 0 20px;
}
@media (max-width: 767px) {
  .c-case__tag {
    margin: 10px 0 10px;
  }
}
.c-case__title {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.4166666667em;
  color: #221815;
  margin-top: 0;
  text-wrap: initial;
  text-align: center;
}
@media (max-width: 767px) {
  .c-case__title {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
.c-case__note {
  font-size: 1.6rem;
  line-height: 1.875em;
  color: #221815;
  text-align: center;
}
@media (max-width: 767px) {
  .c-case__note {
    font-size: 1.5rem;
  }
}

.c-case-filter__item {
  all: unset;
  cursor: pointer;
  display: inline-block;
  background: #eace34;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 9999px;
  padding: 5px 10px;
  margin: 24px 0 20px;
}
.c-case-filter__item.is-active {
  background: #4788d9;
}

ul.c-list {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  list-style-position: inside;
}
ul.c-list > li {
  position: relative;
  padding-left: 1.3em;
  line-height: 180%;
}
ul.c-list > li::before {
  content: "・";
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  ul.c-list > li::before {
    width: 8px;
    height: 8px;
    top: 4px;
  }
}
ul.c-list--notice > li {
  font-size: 1.4rem;
  color: #888888;
}
ul.c-list--notice > li::before {
  content: "※";
}
@media (max-width: 767px) {
  ul.c-list--notice > li::before {
    top: 0px;
  }
}

ol.c-list {
  list-style: none;
  list-style-position: inside;
  counter-reset: number;
  margin-left: 0;
  padding-left: 0;
}
ol.c-list > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.875em;
}
ol.c-list > li::before {
  display: block;
  counter-increment: number;
  content: counter(number);
  position: absolute;
  left: 0;
  top: 5px;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  line-height: 20px;
  background: #f1a52e;
}

.c-pagination {
  position: relative;
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .c-pagination {
    margin-top: 0;
    margin-bottom: 50px;
  }
}
.c-pagination ul {
  display: flex;
  justify-content: center;
  gap: 3px;
  position: relative;
  padding-left: 150px;
  padding-right: 150px;
}
@media (max-width: 767px) {
  .c-pagination ul {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.c-pagination ul li {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .c-pagination ul li {
    font-size: 1.2rem;
  }
}
.c-pagination ul li a {
  text-decoration: none;
  display: block;
  text-align: center;
  font-weight: normal;
  margin: 0 5px;
  font-size: 1.8rem;
  color: #221815;
}
@media (max-width: 767px) {
  .c-pagination ul li a {
    font-size: 1.2rem;
  }
}
.c-pagination ul .current {
  text-decoration: underline;
  cursor: none;
  display: block;
  text-align: center;
  font-weight: normal;
  margin: 0 5px;
  font-size: 1.8rem;
  color: #f1a52e;
}
@media (max-width: 767px) {
  .c-pagination ul .current {
    font-size: 1.2rem;
  }
}
.c-pagination ul .next {
  position: absolute;
  right: 0;
  top: -20px;
  width: 220px;
  height: 70px;
  align-items: center;
  justify-content: center;
  display: flex;
  color: #f1a52e;
  text-decoration: none;
  font-weight: 500;
  line-height: 150%;
  font-size: 1.8rem;
  padding: 0px 0px;
  text-align: center;
  border-radius: 9999px;
  margin: 0 auto;
  transition: 0.3s ease !important;
  border: 2px solid #f1a52e;
}
@media (max-width: 767px) {
  .c-pagination ul .next {
    width: 80px;
    line-height: 40px;
    height: 40px;
    font-size: 1rem;
    top: -10px;
  }
}
.c-pagination ul .next:hover {
  text-decoration: none;
  background: #f1a52e;
  color: #fff;
  box-shadow: none;
}
.c-pagination ul .prev {
  position: absolute;
  left: 0;
  top: -20px;
  width: 220px;
  height: 70px;
  align-items: center;
  justify-content: center;
  display: flex;
  color: #f1a52e;
  text-decoration: none;
  font-weight: 500;
  line-height: 150%;
  font-size: 1.8rem;
  padding: 0px 0px;
  text-align: center;
  border-radius: 9999px;
  margin: 0 auto;
  transition: 0.3s ease !important;
  border: 2px solid #f1a52e;
}
@media (max-width: 767px) {
  .c-pagination ul .prev {
    width: 80px;
    line-height: 40px;
    height: 40px;
    font-size: 1rem;
    top: -10px;
  }
}
.c-pagination ul .prev:hover {
  text-decoration: none;
  background: #f1a52e;
  color: #fff;
  box-shadow: none;
}

.c-form {
  position: relative;
  margin-top: 40px;
  background: #fff;
  border-radius: 30px;
  padding: 70px 70px 30px;
  /* 元のチェックボックスを隠す */
  /* 共通：チェック時の枠線色 */
}
@media (max-width: 767px) {
  .c-form {
    margin-top: 0;
    padding: 35px 15px;
  }
}
.c-form__item {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .c-form__item {
    margin-bottom: 20px;
  }
}
.c-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
@media (max-width: 767px) {
  .c-form__grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
  }
}
.c-form__header {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 5%;
  margin-bottom: 10px;
}
.c-form__table {
  width: 100%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ededed;
}
.c-form__table th {
  width: 250px;
  text-align: left;
  font-size: 1.6rem;
  font-weight: normal;
  color: #221815;
  position: relative;
  padding-top: 30px;
  font-weight: normal;
  padding-bottom: 30px;
  vertical-align: top;
  border-bottom: 1px solid #ededed;
}
@media (max-width: 767px) {
  .c-form__table th {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: none;
  }
}
.c-form__table td {
  border-bottom: 1px solid #ededed;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .c-form__table td {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .c-form .c-form__table,
  .c-form .c-form__table tbody,
  .c-form .c-form__table tr,
  .c-form .c-form__table th,
  .c-form .c-form__table td {
    display: block;
    width: 100%;
  }
}
.c-form__required {
  color: white;
  background: #dc7434;
  border-radius: 5px;
  margin-left: 10px;
  display: inline-block;
  font-size: 1.2rem;
  padding: 5px;
}
.c-form .wpcf7-list-item input[type="radio"],
.c-form .wpcf7-list-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-form .wpcf7-list-item label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
}
.c-form .wpcf7-list-item {
  margin: 0 15px 10px 0;
  display: block;
}
.c-form .wpcf7-list-item label:has(input[type="radio"])::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background: #fff;
}
.c-form .wpcf7-list-item label:has(input[type="radio"]:checked)::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #eace34;
  border-radius: 50%;
}
.c-form .wpcf7-list-item label:has(input[type="checkbox"])::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: #fff;
}
.c-form .wpcf7-list-item label:has(input[type="checkbox"]:checked)::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border-right: 3px solid #eace34;
  border-bottom: 3px solid #eace34;
  transform: rotate(45deg);
}
.c-form .wpcf7-list-item label:has(input:checked)::before {
  border-color: #eace34;
}
.c-form input[type="submit"] {
  background: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.c-form__submit {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .c-form__submit {
    margin-top: 0;
  }
}
.c-form__submit input[type="submit"] {
  cursor: pointer;
  width: 300px;
  align-items: center;
  justify-content: center;
  display: block;
  color: white;
  text-decoration: none;
  font-weight: 500;
  line-height: 150%;
  font-size: 1.8rem;
  padding: 15px 20px;
  text-align: center;
  border-radius: 9999px;
  margin: 0 auto;
  transition: 0.3s ease !important;
  background: linear-gradient(
    to right,
    rgb(239, 153, 72) 0%,
    rgb(226, 102, 26) 100%
  );
  border: 1px solid #f1a52e;
  box-shadow: none;
  letter-spacing: 5%;
}
.c-form__submit input[type="submit"]:hover {
  text-decoration: none;
  background: #fff;
  box-shadow: none;
  color: #f1a52e;
}
@media (max-width: 767px) {
  .c-form__submit input[type="submit"] {
    width: 100%;
    font-size: 2rem;
  }
}
.c-form input::-moz-placeholder {
  font-size: 1.6rem;
  color: #d9d9d9;
}
.c-form input::placeholder {
  font-size: 1.6rem;
  color: #d9d9d9;
}
.c-form__text,
.c-form__textarea {
  width: 350px;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid #e3e1d7;
  border-radius: 0px;
  font-size: 1.6rem;
  background: #fff;
  transition: border-color 0.2s;
}
@media (max-width: 767px) {
  .c-form__text,
  .c-form__textarea {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-form__text--zip,
.c-form__textarea--zip {
  display: inline-block;
  width: 111px;
  margin-bottom: 12px;
  margin-left: 5px;
}
.c-form__text:focus,
.c-form__textarea:focus {
  outline: none;
}
.c-form__text.input-long,
.c-form__textarea.input-long {
  width: 100%;
}
.c-form__textarea {
  height: 400px;
  width: 100%;
  border-radius: 5px;
  font-size: 2.6rem;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .c-form__textarea {
    height: 160px;
    border-radius: 0;
    margin-bottom: 0;
  }
}
.c-form__post {
  width: 150px;
  margin-bottom: 10px;
}
.c-form__select-wrap {
  display: block;
  margin: 0;
  max-width: 380px;
  position: relative;
}
@media (max-width: 767px) {
  .c-form__select-wrap {
    width: 100%;
  }
}
.c-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  display: block;
  border-radius: 10px;
  height: 60px;
  padding: 5px 25px;
  border: 1px solid #cdcdcd;
}
@media (max-width: 767px) {
  .c-form select {
    width: 100%;
    height: 50px;
  }
}
.c-form .is-error {
  display: block;
  color: red;
}
.c-form__pp {
  overflow: scroll;
  border: 1px solid #e3e1d7;
  padding: 30px;
  height: 155px;
  margin: 20px auto;
}
@media (max-width: 767px) {
  .c-form__pp {
    padding: 15px;
  }
}

.choices {
  margin-bottom: 0;
  /* クリックして開いた時のリスト部分 */
}
.choices__inner {
  background: none !important;
  width: 100%;
  height: 80px !important;
  padding: 19px 40px !important;
  border: 1px solid #000 !important;
  border-radius: 5px !important;
  font-size: 2.6rem !important;
  letter-spacing: 5% !important;
  background: #fff;
  display: flex;
  font-weight: 500 !important;
  align-items: center;
}
@media (max-width: 767px) {
  .choices__inner {
    height: 70px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 2rem !important;
  }
}
.choices__list {
  max-height: 500px !important;
}
.choices__list--dropdown {
  max-height: auto !important;
  border: 1px solid black; /* 画像のようなハッキリした枠線 */
  border-radius: 5px;
  margin-top: 5px;
  box-shadow: none !important;
}
.choices__list--dropdown .choices__item {
  padding: 19px 40px !important;
  border: none;
  border-radius: 5px !important;
  font-size: 2.6rem !important;
  letter-spacing: 5% !important;
}
@media (max-width: 767px) {
  .choices__list--dropdown .choices__item {
    font-size: 2rem !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
.choices__list--dropdown .choices__item:hover {
  background-color: #f0f0f0; /* ホバー時の色 */
}
.choices::after {
  border: none !important;
  width: 18px !important;
  height: 18px !important;
  background: url(../img/select.svg) no-repeat center/contain;
  transition: transform 0.3s;
  margin-top: -9px !important;
}
.choices.is-open::after {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .choices__list--single {
    padding: 0 !important;
  }
}

.wpcf7-turnstile {
  text-align: center;
  margin-bottom: 30px;
}

.c-btn {
  position: relative;
  align-items: center;
  justify-content: center;
  display: block;
  color: #fff;
  text-decoration: none;
  line-height: 150%;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 18px 18px;
  text-align: center;
  border-radius: 9999px;
  margin: 30px 0;
  border-radius: 9999px;
  transition: 0.3s ease;
  width: 240px;
  background: linear-gradient(
    to right,
    rgb(239, 153, 72) 0%,
    rgb(226, 102, 26) 100%
  );
  border: 1px solid #f1a52e;
}
.c-btn > i {
  font-size: 1.2em;
}
@media (max-width: 767px) {
  .c-btn {
    width: 250px;
    font-size: 1.5rem;
    padding: 15px 10px;
    margin: 30px auto;
  }
}
.c-btn:hover {
  text-decoration: none;
  background: #fff;
  color: #f1a52e;
}
.c-btn--green {
  background: #a8cdb8;
  border: 2px solid #a8cdb8;
}
.c-btn--green:hover,
.c-btn--green.is-active {
  background: none;
}
.c-btn--terra {
  background: #e7b290;
  border: 2px solid #e7b290;
}
.c-btn--terra:hover,
.c-btn--terra.is-active {
  background: none;
}
.c-btn--block {
  display: block;
  margin: 0 auto;
}
.c-btn--auto {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.c-btn--long {
  width: 420px;
}
.c-btn--400 {
  width: 100%;
  max-width: 400px;
}
@media (max-width: 767px) {
  .c-btn--400 {
    width: 90%;
  }
}
.c-btn--380 {
  width: 100%;
  max-width: 380px;
}
@media (max-width: 767px) {
  .c-btn--380 {
    width: 90%;
  }
}
.c-btn--200 {
  width: 200px;
}
.c-btn.u-en {
  font-size: 2.6rem;
}
.c-btn--border-orange {
  background: #fff;
  border: 2px solid #f1a52e;
  color: #f1a52e;
}
.c-btn--border-orange:hover {
  background: #f1a52e;
  color: #fff;
}

.c-title-2-box {
  position: relative;
  padding: 1px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}
@media (max-width: 767px) {
  .c-title-2-box {
    height: 140px;
  }
}
.c-title-2-box .c-title-2-box__caption {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 20rem;
  margin: 0;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Lato", sans-serif;
  line-height: 0;
}
@media (max-width: 767px) {
  .c-title-2-box .c-title-2-box__caption {
    font-size: 7rem;
  }
}
.c-title-2-box .c-title-2 {
  margin-top: 0px;
  margin-bottom: 0;
}

.c-title-2 {
  text-align: center;
  font-weight: 600;
  color: #221815;
  font-size: 3.6rem;
  line-height: 1.35em;
  position: relative;
  margin-block-start: 100px;
  margin-block-end: 60px;
  text-wrap: initial;
  z-index: 3;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .c-title-2 {
    font-size: 2.6rem;
    margin-block-start: 60px;
    margin-block-end: 40px;
  }
}
.c-title-2__caption {
  text-align: center;
  color: #7dbae7;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  display: block;
  margin-top: 15px;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .c-title-2__caption {
    margin-top: 5px;
  }
}

.c-title-3 {
  margin-top: 60px;
  margin-bottom: 40px;
  font-size: 3rem;
  font-weight: 500;
  padding: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .c-title-3 {
    font-size: 2.2rem;
    margin-top: 40px;
    margin-bottom: 30px;
  }
}

.c-title-4 {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5em;
  margin-bottom: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .c-title-4 {
    font-size: 1.8rem;
  }
}

.c-line {
  position: relative;
  margin: 70px auto;
}
@media (max-width: 767px) {
  .c-line {
    padding: 1px 0px 20px;
    margin: 50px auto 20px;
  }
}
.c-line__block {
  position: relative;
  border: 3px solid #06c755;
  background: #fff;
  border-radius: 20px;
  max-width: 788px;
  margin: 30px auto;
}
.c-line__link {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 20px 20px 20px;
  color: #221815;
  text-decoration: none;
}
@media (max-width: 767px) {
  .c-line__link {
    display: block;
  }
}
.c-line__link:hover {
  opacity: 0.5;
}
.c-line__link::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 10%;
  background: url(../img/arrow-circle-green.png) center center no-repeat;
  background-size: 24px 24px;
  width: 85px;
  height: 80%;
  border-left: 1px solid #eeece9;
}
@media (max-width: 767px) {
  .c-line__link::after {
    display: none;
  }
}
.c-line__title {
  text-align: center;
  font-weight: bold;
  font-size: 2.6rem;
  margin: 0;
  position: relative;
}
@media (max-width: 767px) {
  .c-line__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}
.c-line__title::before {
  content: "";
  display: inline-block;
  background: url(../img/ic-line.png) center top no-repeat;
  background-size: contain;
  width: 50px;
  height: 48px;
  vertical-align: middle;
  position: relative;
  top: -3px;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .c-line__title::before {
    display: block;
    margin: -30px auto 10px;
    z-index: 3;
  }
}
.c-line__feats {
  margin: 0;
}
@media (max-width: 767px) {
  .c-line__feats {
    margin-left: 30px;
  }
}
.c-line__feats > li {
  font-size: 1.5rem;
  line-height: 1.7333em;
  position: relative;
  padding-left: 25px;
}
.c-line__feats > li::before {
  content: "";
  display: block;
  background: url(../img/line-check.png) 0 0 no-repeat;
  background-size: contain;
  width: 20px;
  height: 17px;
  position: absolute;
  left: 0;
  top: 5px;
}
.c-line__grid {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 767px) {
  .c-line__grid {
    display: block;
  }
}
.c-line__content {
  flex: 1;
}
.c-line__qr {
  flex: 0 0 150px;
}
@media (max-width: 767px) {
  .c-line__qr {
    width: 100px;
    margin: 15px auto 0;
    display: none;
  }
}
.c-line__up {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .c-line__up {
    display: block;
  }
}
.c-line__up p {
  margin: 10px 0 0 !important;
  flex: 1;
}
@media (max-width: 767px) {
  .c-line__up p {
    text-align: center;
  }
}
.c-line__title-2 {
  font-weight: bold;
  font-size: 3rem;
  display: flex;
  align-items: flex-end;
  flex: 0 0 280px;
  margin: 0;
}
@media (max-width: 767px) {
  .c-line__title-2 {
    text-align: center;
    font-size: 2rem;
    width: 190px;
    margin: 0 auto;
  }
}
.c-line__title-2 img {
  width: 55px;
  margin-right: 10px;
  position: relative;
  top: 5px;
}
@media (max-width: 767px) {
  .c-line__title-2 img {
    width: 35px;
    top: 0;
  }
}
.c-line__down {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.c-line__down img {
  width: 70px;
  float: right;
}
@media (max-width: 767px) {
  .c-line__down {
    display: block;
  }
}
.c-line__down p {
  margin: 10px 0 0 !important;
  flex: 1;
}
@media (max-width: 767px) {
  .c-line__down p {
    margin-bottom: 15px !important;
  }
}
.c-line .c-deco--line {
  left: 60px;
  top: -89.5px;
}
@media (max-width: 767px) {
  .c-line .c-deco--line {
    left: -45px;
    top: -70px;
  }
}

.c-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}
@media (max-width: 767px) {
  .c-card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  transition: 0.3s ease;
}
.c-card:hover {
  opacity: 0.7;
}
.c-card__stick {
  width: 60px;
  display: block;
  margin: -60px auto 15px;
}
@media (max-width: 767px) {
  .c-card__stick {
    width: 40px;
    margin: -40px auto 10px;
  }
}
.c-card__link {
  display: block;
  text-decoration: none;
  color: #221815;
}
.c-card__link:hover .c-card__pic img {
  transform: scale(1.1);
}
.c-card__pic {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media (max-width: 767px) {
  .c-card__pic {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
.c-card__pic img {
  transition: 0.3s ease;
}
.c-card__pic--round {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.c-card__content {
  position: relative;
  padding: 25px 35px 35px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 767px) {
  .c-card__content {
    padding: 20px 20px 30px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
.c-card__title {
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .c-card__title {
    font-size: 2rem;
  }
}
.c-card__label {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.875em;
  margin-top: 0;
}
@media (max-width: 767px) {
  .c-card__label {
    font-size: 1rem;
  }
}
.c-card__desc {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.666em;
  margin-top: 0;
}
@media (max-width: 767px) {
  .c-card__desc {
    font-size: 1.4rem;
  }
}
.c-card .c-btn {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .c-card .c-btn {
    margin-top: 15px;
  }
}
.c-card .c-ic {
  display: block;
  margin-left: auto;
  margin-right: auto;
  transform: scale(2);
  margin-top: -15px;
}

.c-qna-list {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .c-qna-list {
    margin-bottom: 35px;
  }
}

.c-qna {
  margin-bottom: 13px;
  border-radius: 20px;
  background: #fafafa;
}
.c-qna__q {
  font-size: 2rem;
  line-height: 1.6em;
  margin: 0;
  position: relative;
  padding: 30px 75px;
  padding-right: 50px;
  letter-spacing: 5%;
  cursor: pointer;
  font-weight: 500;
  text-wrap: initial;
}
@media (max-width: 767px) {
  .c-qna__q {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 15px;
    padding-left: 60px;
    font-size: 1.8rem;
  }
}
.c-qna__q::before {
  content: "";
  display: block;
  background: url(../img/q.png) center center no-repeat;
  background-size: contain;
  width: 41px;
  height: 41px;
  position: absolute;
  left: 23px;
  top: 50%;
  margin-top: -20px;
}
@media (max-width: 767px) {
  .c-qna__q::before {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    left: 20px;
  }
}
.c-qna__q::after {
  content: "";
  display: block;
  background: url(../img/plus.png) center center no-repeat;
  background-size: 24px 24px;
  width: 82px;
  height: 80%;
  position: absolute;
  right: 0px;
  top: 10%;
  border-left: 1px solid #eeece9;
}
@media (max-width: 767px) {
  .c-qna__q::after {
    width: 40px;
    display: none;
  }
}
.c-qna__q.is-active::after {
  background: url(../img/minus.png) center center no-repeat;
  background-size: 24px 24px;
}
.c-qna__a {
  border-top: 1px solid #eeece9;
  padding: 25px;
  position: relative;
  font-size: 1.6rem;
  line-height: 180%;
  display: none;
}
@media (max-width: 767px) {
  .c-qna__a {
    padding: 15px;
  }
}
.c-qna__a p {
  margin-top: 0;
  margin-bottom: 0;
}

.c-table {
  width: 100%;
  border-spacing: 0;
  margin: 20px auto;
  border-top: 1px solid #e9e9e9;
}
@media (max-width: 767px) {
  .c-table {
    border-top: 1px solid #e9e9e9;
    margin: 30px auto;
  }
}
@media (max-width: 767px) {
  .c-table tbody,
  .c-table tr,
  .c-table th,
  .c-table td {
    display: block;
    width: 100% !important;
  }
}
.c-table th {
  vertical-align: top;
  line-height: 1.5em;
  font-weight: normal;
  font-size: 1.6rem;
  padding: 25px 10px;
  width: 190px;
  border-bottom: 1px solid #e9e9e9;
  word-break: keep-all;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 767px) {
  .c-table th {
    padding: 10px 5px;
    border-bottom: none;
  }
}
.c-table td {
  padding: 25px 10px;
  border-bottom: 1px solid #e9e9e9;
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .c-table td {
    padding: 5px 5px 10px;
  }
}

p + .c-table {
  margin-top: 0;
}

.c-feat__pic {
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-feat__pic {
    width: 100%;
    margin-bottom: 5px;
    z-index: 6;
    position: relative;
  }
}
.c-feat__pic img {
  transition: 0.3s ease;
}
.c-feat__content {
  position: relative;
  padding: 45px 35px;
}
@media (max-width: 767px) {
  .c-feat__content {
    padding: 20px 20px;
  }
}
.c-feat__title {
  color: #4788d9;
  font-size: 2.4rem;
  margin-top: 0;
  line-height: 1.5em;
  text-align: center;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .c-feat__title {
    font-size: 2.4rem;
    min-height: auto;
  }
}
.c-feat__note {
  font-size: 1.6rem;
  line-height: 1.875em;
}
@media (max-width: 767px) {
  .c-feat__note {
    margin-bottom: 20px;
  }
}

#wpmem_login {
  width: 100% !important;
}
#wpmem_login legend {
  display: none;
}

.c-login {
  width: 100%;
  max-width: 480px;
  margin: 30px auto;
  padding: 40px 20px 0;
  background: #fff;
  border: 10px solid #e8f4f6;
  border-radius: 80px;
}
@media (max-width: 767px) {
  .c-login {
    padding: 30px 20px;
    margin: 60px auto;
    border-radius: 12px;
  }
}
.c-login .c-title-2 {
  margin-top: 0;
}
.c-login__title {
  font-size: 2rem;
  font-weight: bold;
  color: #221815;
  text-align: center;
  margin-bottom: 25px;
}
.c-login__field {
  margin-bottom: 25px;
}
.c-login__field label {
  display: block;
  font-size: 1.6rem;
  color: #221815;
  margin-bottom: 8px;
  font-weight: normal;
  text-align: center;
}
.c-login input[type="text"],
.c-login input[type="password"] {
  display: block;
  width: 355px;
  height: 50px !important;
  padding: 5px 9px !important;
  border: 1px solid #cdcdcd !important;
  border-radius: 10px !important;
  font-size: 1.6rem !important;
  background: #fff;
  transition: border-color 0.2s;
}
.c-login input[type="text"]:focus,
.c-login input[type="password"]:focus {
  border-color: #ec7891;
  outline: none;
}
.c-login .button_div {
  text-align: center !important;
}
.c-login input[type="submit"] {
  cursor: pointer;
  background: #9da8c8 !important;
  position: relative;
  width: 300px !important;
  display: block !important;
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  line-height: 150%;
  border: none !important;
  font-size: 1.8rem !important;
  padding: 25px 20px !important;
  text-align: center;
  border-radius: 9999px;
  margin: 30px auto !important;
  transition: opacity 0.3s ease !important;
}
@media (max-width: 767px) {
  .c-login input[type="submit"] {
    width: 100%;
    font-size: 1.5rem;
  }
}
.c-login input[type="submit"]:hover {
  background: #221815 !important;
  color: #fff !important;
}
.c-login__message {
  text-align: center;
  font-size: 1.5rem;
  color: #555;
  margin-top: 20px;
}
.c-login__message a {
  color: #221815;
  text-decoration: underline;
}
.c-login__message a:hover {
  text-decoration: none;
}
.c-login__error {
  text-align: center;
  color: red;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.c-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}
@media (max-width: 767px) {
  .c-media-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-media-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .c-media-grid--2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-media {
  position: relative;
}
.c-media__pic img {
  border-radius: 20px;
}
.c-media__title {
  margin-top: 25px;
  font-weight: bold;
  color: #f1a52e;
  text-align: center;
  line-height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-header {
  position: relative;
  z-index: 40;
  padding: 10px 25px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  gap: 50px;
}
@media (max-width: 767px) {
  .p-header {
    height: 60px;
    padding: 10px;
  }
}
.p-header__title {
  position: relative;
  z-index: 50;
  margin: 0;
  transition: 0.3s ease;
  width: 100%;
  max-width: 209px;
  flex: 1;
}
@media (max-width: 767px) {
  .p-header__title {
    flex: initial;
  }
}
.p-header__title a {
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
  display: block;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}
.p-header__title a:hover {
  opacity: 0.7;
}
.p-header__nav {
  gap: 20px;
  display: flex;
  align-items: center;
}
.p-header__nav a {
  color: #221815;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: 0.3s ease;
}
.p-header__nav a:hover {
  color: #f1a52e;
  text-decoration: none;
}
.p-header__nav a:after {
  content: "|";
  padding-left: 20px;
  color: #e9e9e9;
}
.p-header__nav a:last-child::after,
.p-header__nav a:nth-last-child(2)::after {
  content: none;
}
.p-header__nav-contact {
  width: 200px;
  color: #fff !important;
  text-align: center;
  border-radius: 25px;
  line-height: 50px;
}
.p-header__nav-contact:hover {
  background: #fff;
  color: #f1a52e !important;
  border: 1px solid #f1a52e;
}

.p-nav {
  position: relative;
  width: 100%;
  z-index: 50;
}
@media (max-width: 767px) {
  .p-nav {
    position: initial;
  }
}
.p-nav__fix {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  width: calc(100vw - 60px);
  height: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .p-nav__fix {
    width: 100%;
    z-index: 20;
  }
}
.p-nav__fix a {
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 60px;
  border-right: 1px solid #3b78c5;
  background: rgba(71, 136, 217, 0.95);
}
.p-nav__fix a i {
  margin-right: 5px;
}
.p-nav__fix a:hover {
  opacity: 0.7;
}
.p-nav__inner {
  width: 400px;
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  transform: translate3d(100%, 0, 0);
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .p-nav__inner {
    padding-top: 50px;
    width: 100%;
  }
}
.p-nav__inner .c-btn {
  margin-top: 0;
  margin-left: 50px;
}
.p-nav.is-active .p-nav__inner {
  transform: translate3d(0%, 0, 0);
}
.p-nav__list {
  padding: 0;
  margin: 0;
  position: relative;
  right: 0;
  top: 0;
  padding: 50px 30px !important;
}
@media (max-width: 767px) {
  .p-nav__list {
    order: 1;
    display: block;
  }
}
.p-nav__list > li {
  position: relative;
}
.p-nav__list > li.has-child:hover > .p-nav__child {
  display: block;
}
@media (min-width: 768px) {
  .p-nav__list > li.is-active a {
    border-bottom: 1px solid #221815;
  }
}
.p-nav__list > li a {
  color: #221815;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  display: block;
  text-align: left;
  transition: 0.3s ease;
  line-height: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  padding-right: 25px;
  padding-left: 25px;
  padding-top: 10px;
  position: relative;
}
.p-nav__list > li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.p-nav__list-sub li a {
  font-size: 1.5rem;
  font-weight: normal;
  display: block;
  padding-left: 35px;
}
.p-nav__text {
  display: block;
}
@media (max-width: 767px) {
  .p-nav__text {
    font-size: 2rem;
  }
}
.p-nav__child {
  border-radius: 30px;
  margin-bottom: 27px;
  border: 2px solid #222222;
  background: #fff;
  position: absolute;
  left: -60px;
  top: 100%;
  width: 200px;
  padding: 25px 25px !important;
  display: none;
  border-radius: 50px;
}
.p-nav__child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 8.5px 14px 8.5px;
  border-color: transparent transparent #222222;
  translate: -50% -100%;
}
.p-nav__child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 6.2px 10.1px 6.2px;
  border-color: transparent transparent #ffffff;
  translate: -50% -100%;
}
.p-nav__child li {
  border-bottom: 1px solid #cccccc;
}
.p-nav__child li a {
  color: #221815;
  display: block;
  text-align: center;
  padding: 10px 0px;
  position: relative;
  font-weight: bold;
  line-height: 1.875em;
  font-size: 1.6rem;
}
.p-nav__child li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #4788d9;
  transition: 0.3s ease;
}
.p-nav__child li a:hover::before {
  width: 100%;
}
@media (max-width: 767px) {
  .p-nav__child {
    display: block;
    width: 100%;
    position: initial;
    background: none;
    border: none;
    margin: 0;
    padding: 0 !important;
    list-style: none;
    border-radius: 0;
  }
  .p-nav__child::before,
  .p-nav__child::after {
    content: none;
  }
  .p-nav__child li {
    text-align: left;
    border: none;
    border-top: 1px solid #e1e1e1;
    margin: 0;
  }
  .p-nav__child li a {
    text-align: left;
    font-weight: normal;
    padding-left: 75px;
    display: block;
  }
}
.p-nav__overlay {
  position: fixed;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transform: translate3d(100%, 0, 0);
  z-index: 40;
  display: none;
}
@media (max-width: 767px) {
  .p-nav__overlay {
    z-index: 21;
  }
}
.p-nav.is-active .p-nav__overlay {
  transform: translate3d(0%, 0, 0);
}
.p-nav__btns {
  order: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .p-nav__btns {
    order: 2;
    display: block;
  }
  .p-nav__btns .c-btn {
    width: 100%;
    display: block;
    margin-bottom: 30px;
    font-size: 2.4rem;
    font-weight: 500;
  }
}

.p-nav-toggle {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 10px;
  top: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 62;
  transition: 0.3s ease;
  box-sizing: border-box;
  background: linear-gradient(
    to right,
    rgb(239, 153, 72) 0%,
    rgb(226, 102, 26) 100%
  );
}
.p-nav-toggle span {
  background: #fff;
  width: 30px;
  height: 2px;
  position: absolute;
  left: 15px;
  top: 24px;
  transition: 0.3s ease;
  border-radius: 9999px;
}
.p-nav-toggle span:nth-child(1) {
  top: 23px;
}
.p-nav-toggle span:nth-child(2) {
  top: 35px;
}
.p-nav-toggle.is-active span:nth-child(1) {
  top: 29px;
}
.p-nav-toggle.is-active span:nth-child(2) {
  top: 29px;
}
.p-nav-toggle.is-scroll.is-active {
  display: block;
  opacity: 1;
  animation-duration: 0.5s;
  animation-name: fade-in;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .l-nav.is-active .p-nav__inner {
    transform: translateX(0);
  }
}

.p-footer {
  position: relative;
  z-index: 6;
}
@media (max-width: 767px) {
  .p-footer {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.p-footer__page-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 138px;
  z-index: 20;
}
@media (max-width: 767px) {
  .p-footer__page-top {
    right: 0px;
    bottom: 0;
  }
}
.p-footer__page-top:hover {
  opacity: 0.7;
}
.p-footer__page-top.is-hidden {
  display: none;
}
.p-footer__page-top.is-visible {
  display: block;
  animation: fadein ease 500ms 1;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-footer__title {
  margin: 60px auto;
  text-align: center;
  color: #4788d9;
  width: 209px;
}
.p-footer__nav {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .p-footer__nav {
    margin-top: 30px;
  }
}
.p-footer__list {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-footer__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}
.p-footer__list > li {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .p-footer__list > li {
    text-align: center;
  }
}
.p-footer__list > li::after {
  content: "|";
  padding-left: 20px;
  padding-right: 20px;
  color: #e9e9e9;
}
@media (max-width: 767px) {
  .p-footer__list > li::after {
    content: none;
  }
}
.p-footer__list > li:last-child::after {
  content: none;
}
.p-footer__list a {
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
  color: #221815;
}
.p-footer__list a:hover {
  color: #f1a52e;
}
.p-footer__note {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.875em;
}
@media (max-width: 767px) {
  .p-footer__note {
    font-size: 1.3rem;
  }
}
.p-footer__copyright {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 25px;
  margin-bottom: 35px;
}

.p-page {
  position: relative;
}
.p-page__header {
  position: relative;
  padding-top: 200px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .p-page__header {
    padding-top: 100px;
    padding-bottom: 90px;
  }
}
.p-page__header-title {
  margin: 0 auto;
  font-size: 2.6rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-page__header-title {
    font-size: 2rem;
  }
}
.p-page__header-title > span {
  display: inline-block;
  background: #fff;
  border-radius: 4px;
  padding: 10px 7px;
}
.p-page__content {
  position: relative;
  line-height: 1.8em;
  padding: 50px 0;
}
.p-page__content section p {
  margin-bottom: 30px;
}

.p-sidebar {
  position: relative;
}
@media (max-width: 767px) {
  .p-sidebar {
    margin-top: -150px;
    padding-bottom: 100px;
  }
}
.p-sidebar__block {
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .p-sidebar__block {
    margin-bottom: 40px;
  }
}
.p-sidebar__title {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.8em;
  text-align: left;
  padding: 0;
  margin: 0 0 25px;
}
.p-sidebar__list {
  margin: 0;
}
.p-sidebar__list > li {
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .p-sidebar__list > li {
    margin-bottom: 0em;
  }
}
.p-sidebar__list > li > a {
  text-decoration: none;
  font-size: 1.6rem;
  padding: 5px 0;
  display: inline-block;
  text-align: left;
  position: relative;
}
@media (max-width: 767px) {
  .p-sidebar__list > li > a {
    padding: 10px 0;
  }
}
.p-sidebar__list > li > a::before {
  content: "";
  display: inline-block;
  background: url(../img/angle-right.png) 0 0 no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  top: -2px;
}
.p-sidebar__list > li > a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  width: 0;
  background: #221815;
  height: 1px;
  transition: 0.3s ease;
  opacity: 0;
}
.p-sidebar__list > li > a:hover::after {
  width: 100%;
  opacity: 1;
}
.p-sidebar__select-wrap {
  display: block;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .p-sidebar__select-wrap {
    width: 100%;
  }
}
.p-sidebar__select-wrap::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -3.25px;
  background: url(../img/select.png) 0 0 no-repeat;
  background-size: contain;
  width: 11px;
  height: 6.5px;
}
.p-sidebar__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #afc3e4;
  display: block;
  border-radius: 0;
  height: 41px;
  font-size: 1.4rem;
  padding: 6px 14px;
}
@media (max-width: 767px) {
  .p-sidebar__select {
    width: 100%;
  }
}
.p-sidebar .c-stick--ladybug-bug {
  bottom: -20px;
  right: -20px;
}
@media (max-width: 767px) {
  .p-sidebar .c-stick--ladybug-bug {
    bottom: -40px;
  }
}
.p-sidebar .c-stick--bird-3 {
  left: 10px;
  top: -52px;
}
@media (max-width: 767px) {
  .p-sidebar .c-stick--bird-3 {
    top: -43px;
  }
}

.u-left {
  text-align: left !important;
}

.u-center {
  text-align: center;
}

@media (max-width: 767px) {
  .u-center-sp {
    text-align: center;
  }
}

.u-right {
  text-align: right;
}

@media (max-width: 767px) {
  .u-left-sp {
    text-align: left;
  }
}

.u-strike {
  text-decoration: line-through;
}

.u-tate {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

@media (min-width: 768px) {
  .u-tate-pc {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.u-tate-com {
  transform: rotate(90deg);
  transform-origin: center center;
  display: inline-block;
}

.u-tate-com-2 {
  transform: rotate(180deg);
  transform-origin: center center;
  display: inline-block;
  left: 5px;
  position: relative;
}

.u-en {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.u-en-all * {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.u-small {
  font-size: 0.7em;
}

.u-big {
  font-size: 1.3em;
}

.u-font-lg {
  font-size: 2.4rem !important;
}

.u-bold {
  font-weight: bold;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-pic-round {
  border-radius: 15px;
}

@media (max-width: 767px) {
  .u-br-pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .u-br-sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-mt-lg {
  margin-top: 3rem;
}

.u-list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.u-list-reset li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.u-over {
  transition: 0.3s ease;
}

.u-over:hover {
  opacity: 0.7;
}

.u-under-yellow {
  text-decoration: underline;
  text-decoration-thickness: 7px;
  text-decoration-color: #fdf3dd;
  text-underline-offset: 0px;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.u-under-red {
  text-decoration: underline;
  text-decoration-thickness: 7px;
  text-decoration-color: #fbe3e6;
  text-underline-offset: 0px;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.u-under-blue {
  text-decoration: underline;
  text-decoration-thickness: 7px;
  text-decoration-color: #dceaf6;
  text-underline-offset: 0px;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.u-color-orange-gra,
.u-color-gra-orange {
  background: linear-gradient(
    to right,
    rgb(239, 153, 72) 0%,
    rgb(226, 102, 26) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.u-color-orange {
  color: #f1a52e !important;
}

.u-color-line {
  color: #06c755 !important;
}

.u-color-green {
  color: #d7e7cf !important;
}

.u-color-blue {
  color: #4788d9 !important;
}

.u-color-blue-2 {
  color: #7dbae7 !important;
}

.u-color-blue-sub {
  color: #0050ad !important;
}

.u-color-white {
  color: #fff !important;
}

.u-color-lightblue {
  color: #3ed2e3 !important;
}

.u-color-yellow {
  color: #eace34 !important;
}

.u-color-yellow-2 {
  color: #f7db40 !important;
}

.u-color-pink {
  color: #ec7891 !important;
}

.u-color-brown {
  color: brown !important;
}

.u-color-gray {
  color: #d9d9d9 !important;
}

.u-color-red {
  color: #dc7434 !important;
}

.u-bleed-right {
  flex: 1;
  margin-right: calc(50% - 50vw) !important;
}
@media (max-width: 767px) {
  .u-bleed-right {
    margin-right: 0 !important;
    width: auto;
  }
}

.u-bleed-left {
  flex: 1;
  margin-left: calc(50% - 50vw);
}
@media (max-width: 767px) {
  .u-bleed-left {
    margin-left: 0 !important;
    width: 100%;
  }
}

.u-mask-egg {
  border-radius: 50% 50% 50% 50%/65% 65% 35% 35%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

/*
BG
*/
.u-bg-beige {
  background: #f4f3f0;
}

.u-bg-blue {
  background: #e8f3f7;
}

.u-bg-gray {
  background: #fafafa;
}

.u-bg-green {
  background: #d7e7cf;
}

.u-bg-blue-3 {
  background: #4788d9;
}

.u-bg-gra-orange {
  background: linear-gradient(
    to right,
    rgb(239, 153, 72) 0%,
    rgb(226, 102, 26) 100%
  );
}

.u-bg-brown {
  background: linear-gradient(
    to bottom,
    rgb(225, 161, 24) 0%,
    rgb(217, 143, 17) 100%
  );
}
