@charset "utf-8";

.std-nav {
  margin: 120px 0;
  display: flex;
  border: 2px solid rgba(24, 141, 96, 1);
  border-radius: 20px;
  overflow: hidden;
}

.std-nav__item {
  position: relative;
  flex: 1;
}

.std-nav__item:after {
  content: "";
  width: 2px;
  height: 100%;
  display: block;
  background-color: rgba(24, 141, 96, 1);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.std-nav__item:last-child:after {
  display: none;
}

.std-nav__item a {
  height: 80px;
  padding: 0 10px;
  display: flex;
  font-size: 1.6rem;
  list-style: 1.6;
  font-weight: 600;
  text-decoration: none;
  color: rgba(24, 141, 96, 1);
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.std-nav__item a:hover,
.std-nav__item a.current {
  background-color: rgba(24, 141, 96, 1);
  color: rgba(255, 255, 255, 1);
}

.std-nav__item a .en {
  font-size: 2rem;
  font-weight: 600;
}

.std-section {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.std-section.reverse {
  flex-direction: row;
}

.std-section:before {
  content: "";
  max-width: 100%;
  flex-basis: 100%;
  height: 4px;
  margin: 100px 0;
  display: block;
  background-color: rgba(24, 141, 96, 1);
  border-radius: 2px;
}

.std-section:first-child:before {
  display: none;
}

.std-section__title {
  max-width: 150px;
  flex-basis: 150px;
}

.std-section__title__wrap {
  width: 100%;
  /* position: sticky;
  top: 120px; */
  writing-mode: vertical-rl;
  font-feature-settings: normal;
}

.reverse .std-section__title__wrap {
  width: auto;
}

.std-section__title__category {
  display: table;
  font-size: 1.5rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 1);
  white-space: nowrap;
}

.std-section__title__category .en {
  color: rgba(24, 141, 96, 1);
  writing-mode: horizontal-tb;
  font-feature-settings: "palt";
}

.std-section__title__name {
  margin-right: 10px;
  padding-right: 10px;
  display: table;
  border-right: 1px solid rgba(0, 0, 0, 1);
  font-size: 4rem;
  line-height: 1.2;
  color: rgba(0, 0, 0, 1);
}

.std-list {
  max-width: calc(100% - 150px - 60px);
  flex-basis: calc(100% - 150px - 60px);
}

.std-list__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.std-list__item.multiple {
  display: block;
}

.std-list__item:before {
  content: "";
  width: 100%;
  height: 1px;
  margin: 80px 0;
  display: block;
  border-top: 2px dotted rgba(24, 141, 96, 1);
}

.std-list__item:first-child:before {
  display: none;
}

.std-list-other {
  display: flex;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.std-list__image {
  max-width: 35%;
  flex-basis: 35%;
}

.std-list__image div {
  margin-top: 10px;
  position: relative;
}

.std-list__image div:first-child {
  margin-top: 0;
}

.std-list__image img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.std-list__image ul {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  line-height: 1.6;
}

.std-list__image .list__subtitle__icon {
  right: 10px;
  bottom: 10px;
  margin-right: 0;
  position: absolute;
  z-index: 1;
}

.std-list__wrap {
  max-width: calc(65% - 60px);
  flex-basis: calc(65% - 60px);
}

.std-list__title {
  font-size: 4rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 1);
}

.std-list__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(24, 141, 96, 1);
}

.std-list__subtitle li {
  margin-top: 10px;
  display: flex;
}

.list__subtitle__icon {
  max-width: 20px;
  flex-basis: 20px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: flex;
  background-color: rgba(24, 141, 96, 1);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 1);
  justify-content: center;
  align-items: center;
}

.std-list__catch {
  margin-top: 30px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.8;
  color: rgba(0, 0, 0, 1);
}

.std-list__text {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.std-list-sub {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.std-list-sub__image {
  max-width: 140px;
  flex-basis: 140px;
  border-radius: 5px;
  overflow: hidden;
}

.std-list-sub__wrap {
  max-width: calc(100% - 140px - 20px);
  flex-basis: calc(100% - 140px - 20px);
}

.std-list-sub__title {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: rgba(0, 0, 0, 1);
}

.std-list-sub__text {
  font-size: 1.3rem;
  line-height: 1.8;
}

.std-list__feature {
  padding: 20px;
  margin-top: 40px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.std-list__feature__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.std-list__feature__main:before {
  content: "";
  width: 100%;
  height: 1px;
  margin: 20px 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.15);
}

.std-list__feature__main:first-child:before {
  display: none;
}

.std-list__feature__image {
  min-width: 140px;
  flex-basis: 140px;
}

.std-list__feature__image img {
  border-radius: 10px;
  overflow: hidden;
}

.std-list__feature__image span {
  margin-top: 5px;
  margin-left: auto;
  display: table;
  font-size: 1rem;
  line-height: 1.6;
}

.std-list__feature__wrap {
  max-width: calc(100% - 140px - 20px);
  flex-basis: calc(100% - 140px - 20px);
}

.std-list__feature__title {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8;
  color: rgba(0, 0, 0, 1);
}

.std-list__feature p {
  font-size: 1.3rem;
  line-height: 1.8;
}

.std-list__image__sub {
  max-width: 400px;
  margin-top: 30px;
}

.std-list-set__head {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.std-list-set__head__nav {
  max-width: 250px;
  flex-basis: 250px;
  margin-left: auto;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

.std-list-set__head__nav:after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 50%;
}

.std-list-set__head__nav li {
  max-width: 40%;
  flex-basis: 40%;
  display: flex;
}

.std-list-set__head__nav a {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
  white-space: nowrap;
}

.std-list-set__head__nav a:after {
  content: "";
  width: 100%;
  height: 4px;
  margin-top: 10px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.std-list-set__head__nav .pa a:hover {
  color: rgba(24, 141, 96, 1);
}

.std-list-set__head__nav .pa a:hover:after {
  background-color: rgba(24, 141, 96, 1);
}

.std-list-set__head__nav .pb a:hover {
  color: rgba(0, 116, 214, 1);
}

.std-list-set__head__nav .pb a:hover:after {
  background-color: rgba(0, 116, 214, 1);
}

.std-list-plan {
  margin-top: 20px;
  padding: 60px;
  border-radius: 20px;
}

.std-list-plan__title {
  padding-left: 20px;
  margin-bottom: 20px;
  position: relative;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
}

#plan_a .std-list-plan__title {
  color: rgba(24, 141, 96, 1);
}

#plan_b .std-list-plan__title {
  color: rgba(0, 116, 214, 1);
}

.std-list-plan__title:before {
  content: "";
  width: 4px;
  height: 100%;
  display: block;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
}

#plan_a .std-list-plan__title:before {
  background-color: rgba(24, 141, 96, 1);
}

#plan_b .std-list-plan__title:before {
  background-color: rgba(0, 116, 214, 1);
}

#plan_a.std-list-plan {
  background-color: rgba(24, 141, 96, 0.1);
}

#plan_b.std-list-plan {
  background-color: rgba(0, 116, 214, 0.1);
}

.std-list-plan__image {
  margin-top: 20px;
}

.std-list-plan__image img {
  border-radius: 10px;
  overflow: hidden;
}

.std-list-plan__image li {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.std-list-plan__detail {
  margin-top: 60px;
}

.std-list-plan__detail:before {
  content: "";
  width: 100%;
  height: 1px;
  margin-bottom: 60px;
  display: block;
  background-color: rgba(0, 0, 0, 1);
}

#plan_a .std-list-plan__detail:before {
  background-color: rgba(24, 141, 96, 1);
}

#plan_b .std-list-plan__detail:before {
  background-color: rgba(0, 116, 214, 1);
}

.std-list-plan__detail.noborder:before {
  display: none;
}

.std-list-plan .std-list__feature {
  padding: 0;
  display: flex;
  background-color: rgba(255, 255, 255, 1);
}

.std-list-plan .std-list__feature__main {
  min-width: 50%;
  flex-basis: 50%;
  padding: 20px;
  position: relative;
  box-sizing: border-box;
}

.std-list-plan .std-list__feature__main.wide {
  max-width: 100%;
  flex-basis: 100%;
}

.std-list-plan .std-list__feature__main:before {
  width: 1px;
  height: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.std-list-plan .std-list__title {
  margin-right: 20px;
  display: inline-block;
  vertical-align: middle;
  font-size: 3rem;
}

.std-list-plan .std-list__subtitle {
  display: inline-block;
  vertical-align: middle;
}

#plan_a .std-list__title {
  color: rgba(24, 141, 96, 1);
}

#plan_b .std-list__title,
#plan_b .std-list__subtitle {
  color: rgba(0, 116, 214, 1);
}

@media screen and (max-width: 1280px) {
  .std-nav {
    margin: calc(10px + 10vw) 0;
  }
}

@media screen and (max-width: 1024px) {
  .std-nav__item a {
    font-size: 1.4rem;
  }

  .std-nav__item a .en {
    font-size: 1.6rem;
  }

  .std-section__title {
    max-width: 100px;
    flex-basis: 100px;
  }

  .std-list {
    max-width: calc(100% - 100px - 40px);
    flex-basis: calc(100% - 100px - 40px);
  }

  .std-list__wrap {
    max-width: calc(60% - 4px);
    flex-basis: calc(60% - 40px);
  }
}

@media screen and (max-width: 800px) {
  .std-nav {
    display: block;
  }

  .std-nav__item a {
    height: 60px;
  }

  .std-nav__item:after {
    width: 100%;
    height: 2px;
  }

  .std-section:before {
    height: 2px;
    margin: 60px 0;
    border-radius: 1px;
  }

  .std-section__title__name {
    font-size: 3rem;
  }

  .std-list__item,
  .std-list-other {
    display: block;
  }

  .std-list__item:before {
    margin: 60px 0;
  }

  .std-list__item::before {
    width: 100%;
  }

  .std-list__image,
  .std-list__wrap {
    max-width: none;
  }

  .std-list__image {
    margin-bottom: 20px;
  }

  .std-list__title {
    font-size: 3rem;
  }

  .std-list__catch {
    font-size: 1.8rem;
  }

  .std-list__feature__image {
    min-width: 120px;
    flex-basis: 120px;
  }

  .std-list__feature__wrap {
    max-width: calc(100% - 120px - 20px);
    flex-basis: calc(100% - 120px - 20px);
  }

  .std-list-plan {
    padding: 30px 20px;
  }

  .std-list-plan .std-list__feature {
    display: block;
  }

  .std-list-plan .std-list__feature__main {
    max-width: none;
  }

  .std-list-plan .std-list__feature__main::before {
    width: 100%;
    height: 1px;
  }

  .std-list-set__head {
    display: block;
  }

  .std-list-set__head__nav {
    margin-left: 0;
    margin-top: 40px;
  }

  .std-list-set__head__nav a {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .std-nav {
    border-radius: 10px;
  }

  .std-nav__item a {
    height: 40px;
  }

  .std-section {
    display: block;
  }

  .std-section__title,
  .std-list {
    max-width: none;
  }

  .std-section__title {
    margin-bottom: 30px;
  }

  .std-section__title__wrap {
    writing-mode: inherit;
    font-feature-settings: "palt";
  }

  .std-section__title__name {
    border-right: 0;
  }

  .std-list__item:before {
    margin: 40px 0;
  }

  .std-list__title {
    font-size: 2.5rem;
  }

  .std-list__subtitle {
    font-size: 1.4rem;
  }

  .std-list__catch {
    font-size: 1.6rem;
  }

  .std-list__feature {
    padding: 15px 10px;
  }

  .std-list__feature__image {
    min-width: 120px;
    flex-basis: 120px;
  }

  .std-list__feature__wrap {
    max-width: calc(100% - 120px - 20px);
    flex-basis: calc(100% - 120px - 20px);
  }
}

@media screen and (max-width: 400px) {
}
