
/* animation,other
----------------------------------------- */
.ani.is-active {
  animation: posY-110per-up 0.6s ease-out both;
}
@keyframes posY-110per-up {
  from {
    opacity: 0;
    transform: translateY(50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  #logo_wrap {
    width: 170px !important;
  }
}


/* firstview
----------------------------------------- */
#services_item {
  text-align: left !important;
}
#services_item h1 {
  color: var(--main);
  line-height: 1.5;
}
#services_item h1,
#services_item h1 span {
  font-size: 5rem;
  font-family: NotosansJP-Black, 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", Meiryo, sans-serif;
}
#services_item img:not(.post-contents img) {
  object-fit: contain;
}
@media screen and (max-width: 1050px) {
  #services_item h1,
  #services_item h1 span {
    font-size: 4rem;
  }
}
@media screen and (max-width: 960px) {
  #page__mvv-purpose #page_header {
    height: auto;
  }
  #services_item h1,
  #services_item h1 span {
    font-size: 2.25rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 820px) {
  #services_item .l-flex {
      margin: 3rem 0;
    }
    #services_item .btn-wrap {
      margin-top: 0rem;
    }
}


/* about
----------------------------------------- */
#about .l-flex {
  position: relative;
  gap: initial;
  padding: 4rem 0;
}
#about .l-flex .flex-l .slide-in,
#about .l-flex .flex-l .slide-in_inner {
  height: 100%;
}
#about .l-flex .flex-l img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#about .l-flex .flex-r {
  position: relative;
  z-index: 1;
  padding: 4rem;
  background-color: var(--main-r);
}
#about .l-flex .flex-r h3 {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  padding-right: 2em;
  border-bottom: 1px solid #cccccc;
  color: var(--main);
  font-size: 2rem;
}
#about .l-flex .flex-r h3:before {
  content: "";
  position: absolute;
  right: 0;
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-color: var(--main);
  border-radius: 100%;
}
#about .l-flex .flex-r h3:after {
  content: "";
  position: absolute;
  right: 0.775em;
  display: block;
  transform: translateX(50%) rotate(45deg);
  width: 0.35em;
  height: 0.35em;
  border-top: 2px solid var(--main-r);
  border-right: 2px solid var(--main-r);
}
#about .l-flex .flex-r h4 {
  margin-bottom: 1em;
  font-size: 1.8rem;
  line-height: 1.5;
}

@media screen and (min-width:768px), print { /* pc */
  #about .l-flex {
    margin-bottom: 150px;
  }
  #about .l-flex .flex-l {
    position: absolute;
    right: calc(60% - 4rem);
    width: 45vw;
    height: 100%;
  }
  #about .l-flex:nth-of-type(even) .flex-l {
    right: initial;
    left: calc(60% - 4rem);
  }
  #about .l-flex .flex-r {
    width: 60%;
    margin-left: 40%;
    box-shadow: 0 3px 20px 0 rgba(25, 25, 25, .2);
  }
  #about .l-flex .flex-r a:hover {
    opacity: .5;
  }
  #about .l-flex:nth-of-type(even) .flex-r {
    width: 60%;
    margin-left: 0;
    margin-right: 40%;
  }
}
@media screen and (min-width:1100px) {
  #about .l-flex {
    min-height: 50em;
  }
}
@media screen and (max-width:767px) { /* sp */
 #about .l-flex {
    margin-bottom: 4rem;
    padding: 0;
    box-shadow: 0 3px 20px 0 rgba(25, 25, 25, .2);
  }
  #about .l-flex .flex-r h3 {
    font-size: 1.8rem;
  }
  #about .l-flex .flex-r h4 {
    font-size: 1.6rem;
  }
}


/* flow
----------------------------------------- */
#flow section {
  margin-bottom: 4rem;
  border-radius: 10px;
  background-color: var(--main-r);
  box-shadow: 0 3px 20px 0 rgba(25, 25, 25, .2);
  counter-increment: flowcounter;
}
#flow section h4 {
  padding: 1em;
  border-radius: 10px 10px 0 0;
  color: var(--main-r);
  background-color: var(--main);
  font-size: 2rem;
}
#flow section h4:before {
  content: counter(flowcounter) ". ";
  counter-increment: count 1;
}
#flow section .l-flex {
  align-items: flex-start;
  padding: 4rem;
}
#flow section .l-flex .flex-l p {
  line-height: 1.9;
}
#flow section .accordion_button,
#flow section .close-trigger {
  margin: 0 2rem 3rem 2rem;
  padding: 1.5rem;
  border-radius: 3em;
  color: var(--main);
  background-color: var(--bg);
  text-align: center;
  font-weight: 600;
  transition: all 1s;
  cursor: pointer;
}
#flow section .accordion_button:hover,
#flow section .close-trigger:hover {
  opacity: .5;
  transition: all 1s;
}
#flow section .close-trigger {
  margin-bottom: 4rem;
}
#flow section .accordion_button.open {
  display: none;
}
#flow section .accordion_contents {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
#flow section .accordion_contents dl {
  padding: 2rem;
}
#flow section .accordion_contents dl dt {
  padding: 1.5em;
  border-radius: 10px;
  color: var(--main-r);
  background-color: var(--main);
  font-weight: 600;
  counter-increment: flowsubcounter;
}
#flow section .accordion_contents dl dt span {
  font-weight: 600;
}
#flow section .accordion_contents dl dt span:before {
  content: counter(flowcounter);
  counter-increment: count 1;
}
#flow section .accordion_contents dl dt span:after {
  content: "-" counter(flowsubcounter) ". ";
  counter-increment: count 1;
}
#flow section .accordion_contents dd {
  padding: 1.5em;
  border: 1px solid #cccccc;
  border-radius: 10px;
}

@media screen and (min-width:768px), print { /* pc */
  #flow section .l-flex {
    gap: initial;
  }
  #flow section .l-flex .flex-l {
    width: 70%;
    padding-right: 3rem;
    box-sizing: border-box;
  }
  #flow section .l-flex .flex-r {
    width: 30%;
  }
  #flow section .accordion_contents dl {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  #flow section .accordion_contents dl dt {
    position: relative;
    display: flex;
    align-items: center;
    width: 25rem;
    margin-bottom: 4rem;
  }
  #flow section .accordion_contents dl dt:after {
    content: "";
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 20px solid #82BAA0;
  }
  #flow section .accordion_contents dl dt:last-of-type:after {
    content: none;
  }
  #flow section .accordion_contents dl dt div {
    display: flex;
  }
  #flow section .accordion_contents dl dd {
    display: flex;
    align-items: center;
    width: calc(100% - 26rem);
    margin-bottom: 4rem;
    margin-left: 1rem;
  }
}
@media screen and (max-width:767px) { /* sp */
  #flow section h4 {
    font-size: 1.6rem;
  }
  #flow section .l-flex {
    padding: 2rem;
  }
  #flow section .accordion_contents dl dt {
    border-radius: 10px 10px 0 0;
  }
  #flow section .accordion_contents dl dd {
    position: relative;
    margin-bottom: 4rem;
    border-radius: 0 0 10px 10px;
  }
  #flow section .accordion_contents dl dd:after {
    content: "";
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 20px solid #82BAA0;
  }
  #flow section .accordion_contents dl dt:last-of-type + dd:after {
    content: none;
  }
}

/* study
----------------------------------------- */
#study .swiper-container {
  width: 70% !important;
  margin: 0 15% !important;
  overflow: hidden !important;
  position: relative;
  height: max-content;
}
#study .swiper-button-next,
#study .swiper-button-prev {
  top: initial;
  width: 50px;
  height: 50px;
  display: block;
  margin: 0;
  position: relative;
  left: initial;
  right: initial;
}
@media screen and (max-width:767px) { /* sp */
  #study .swiper-container {
    width: 90% !important;
    margin: 0 5% !important;
  }
  #study .swiper-button {
    margin-top: 2rem;
  }
}

/* plan
----------------------------------------- */
#plan .plan-free {
  align-items: initial;
  gap: initial;
  margin-bottom: 5rem;
  border-radius: 10px;
  box-shadow: 0 3px 20px 0 rgba(25, 25, 25, .2);
  overflow: hidden;
}
#plan .plan-free .flex-l {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1em;
  color: var(--main-r);
  background-color: var(--main);
  text-align: center;
}
#plan .plan-free .flex-r {
  padding: 4rem;
}
#plan .plan-paid.l-flex {
  align-items: initial;
  gap: initial;
}
#plan .plan-paid section {
  border-radius: 10px;
  box-shadow: 0 3px 20px 0 rgba(25, 25, 25, .2);
  overflow: hidden;
}
#plan .plan-paid section h4 {
  padding: 1em;
  color: var(--main-r);
  background-color: var(--main);
  text-align: center;
}
#plan h4 {
  font-size: 2rem;
}
#plan .fee p {
  font-weight: 700;
}
#plan .fee span {
  display: inline-block;
  padding: 0 0.125em;
}
#plan .fee span {
  font-weight: 700;
}
#plan .fee span.small {
  font-size: 1.6rem;
}
#plan .fee span.medium {
  font-size: 2rem;
}
#plan .fee span.big {
  font-size: 3rem;
}
#plan .plan-paid .inner {
  padding: 1rem 2rem;
  text-align: center;
}
#plan .plan-paid .inner dl {
  margin-top: 2rem;
}
#plan .plan-paid .inner dl dt {
  margin-bottom: 0.5em;
  padding: 0.25em;
  border-radius: 3em;
  background-color: var(--bg);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.9;
}
#plan .plan-paid .inner dl dd {
  margin-bottom: 0.5em;
  padding: 0 0.75em 0.75em 0.75em;
  font-size: 1.6rem;
  line-height: 1.9;
}
#plan .plan-paid .inner dl dd.service {
  text-align: left;
}
#plan .plan-paid .inner dl dd br {
  line-height: 0;
}

@media screen and (min-width:960px), print { /* pc */
  #plan .plan-free .flex-l {
    width: 25%;
  }
  #plan .plan-free .flex-r {
    width: 75%;
  }
  #plan .plan-paid section {
    width: calc((100% - 6rem) / 3);
    margin-right: 3rem;
  }
  #plan .plan-paid section:last-of-type {
    margin-right: 0;
  }
  #plan .plan-paid .fee {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 7rem;
  }
}
@media screen and (max-width: 959px) {
  #plan h4 {
    font-size: 1.6rem;
  }
  #plan .plan-paid section {
    margin-bottom: 4rem;
  }
  #plan .plan-free,
  #plan .plan-paid {
    flex-direction: column;
  }
  #plan .plan-free .flex-l,
  #plan .plan-free .flex-r {
    width: 100%;
  }
  #plan .plan-free .flex-r {
    padding: 3rem;
  }
  #plan .plan-paid .inner dl dt,
  #plan .plan-paid .inner dl dd {
    font-size: 1.4rem;
  }
}

/* plan
----------------------------------------- */
.accordion button[aria-expanded='true']+.accordion-content {
  max-height: 20em !important;
}